You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by st...@apache.org on 2014/02/27 13:21:40 UTC

svn commit: r1572532 - /maven/doxia/doxia/trunk/doxia-modules/doxia-module-xhtml/src/main/java/org/apache/maven/doxia/module/xhtml/XhtmlParser.java

Author: stephenc
Date: Thu Feb 27 12:21:40 2014
New Revision: 1572532

URL: http://svn.apache.org/r1572532
Log:
It makes no sense to explicitly call the super. method as this prevents subclasses from customizing the behaviour

Modified:
    maven/doxia/doxia/trunk/doxia-modules/doxia-module-xhtml/src/main/java/org/apache/maven/doxia/module/xhtml/XhtmlParser.java

Modified: maven/doxia/doxia/trunk/doxia-modules/doxia-module-xhtml/src/main/java/org/apache/maven/doxia/module/xhtml/XhtmlParser.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-modules/doxia-module-xhtml/src/main/java/org/apache/maven/doxia/module/xhtml/XhtmlParser.java?rev=1572532&r1=1572531&r2=1572532&view=diff
==============================================================================
--- maven/doxia/doxia/trunk/doxia-modules/doxia-module-xhtml/src/main/java/org/apache/maven/doxia/module/xhtml/XhtmlParser.java (original)
+++ maven/doxia/doxia/trunk/doxia-modules/doxia-module-xhtml/src/main/java/org/apache/maven/doxia/module/xhtml/XhtmlParser.java Thu Feb 27 12:21:40 2014
@@ -118,7 +118,7 @@ public class XhtmlParser
                 this.boxed = true;
             }
 
-            super.baseStartTag( parser, sink ); // pick up other divs
+            baseStartTag( parser, sink ); // pick up other divs
         }
         /*
          * The PRE element tells visual user agents that the enclosed text is
@@ -193,7 +193,7 @@ public class XhtmlParser
         else if ( parser.getName().equals( DIV.toString() ) )
         {
             this.boxed = false;
-            super.baseEndTag( parser, sink );
+            baseEndTag( parser, sink );
         }
         else if ( !baseEndTag( parser, sink ) )
         {