[Libreoffice-commits] core.git: svgio/source

Joren De Cuyper jorendc at libreoffice.org
Tue Jul 15 02:16:57 PDT 2014


 svgio/source/svgreader/svgdocumenthandler.cxx |    7 -------
 1 file changed, 7 deletions(-)

New commits:
commit 1a6e47e3fda10e6d220b67d766ec6fbdfd852b80
Author: Joren De Cuyper <jorendc at libreoffice.org>
Date:   Tue Jul 15 10:13:10 2014 +0200

    Cleanup of switch case flowRoot in svg endelement
    
    We don't need this switch case due the fact we already check it
    before the switch itself. I did introduce this in commit
    5bd241b99b76ae7f4b3c1d4f2bcbaf7c487bb339 but it is redundant.
    
    Change-Id: I24e8c946ef8b8f094daa248c701772e54790c9d1
    Reviewed-on: https://gerrit.libreoffice.org/10317
    Reviewed-by: Tomaž Vajngerl <quikee at gmail.com>
    Tested-by: Tomaž Vajngerl <quikee at gmail.com>

diff --git a/svgio/source/svgreader/svgdocumenthandler.cxx b/svgio/source/svgreader/svgdocumenthandler.cxx
index 3817612..c3b2256 100644
--- a/svgio/source/svgreader/svgdocumenthandler.cxx
+++ b/svgio/source/svgreader/svgdocumenthandler.cxx
@@ -475,13 +475,6 @@ namespace svgio
                         }
                         break;
                     }
-
-                    case SVGTokenFlowRoot:
-                    {
-                        bSkip = false;
-                        break;
-                    }
-
                     default:
                     {
                         /// invalid token, ignore


More information about the Libreoffice-commits mailing list