You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by vs...@apache.org on 2008/02/20 00:04:46 UTC

svn commit: r629264 - /maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java

Author: vsiveton
Date: Tue Feb 19 15:04:44 2008
New Revision: 629264

URL: http://svn.apache.org/viewvc?rev=629264&view=rev
Log:
o specified kind of tag

Modified:
    maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java

Modified: maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java?rev=629264&r1=629263&r2=629264&view=diff
==============================================================================
--- maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java (original)
+++ maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java Tue Feb 19 15:04:44 2008
@@ -541,7 +541,7 @@
                     + parser.getColumnNumber() + "]";
                 String tag = "<" + parser.getName() + ">";
 
-                getLog().warn( "Unrecognized tag: " + tag + " at " + position );
+                getLog().warn( "Unrecognized xml tag: " + tag + " at " + position );
             }
         }
     }
@@ -563,7 +563,7 @@
                     + parser.getColumnNumber() + "]";
                 String tag = "<" + parser.getName() + ">";
 
-                getLog().warn( "Unrecognized tag: " + tag + " at " + position );
+                getLog().warn( "Unrecognized xml tag: " + tag + " at " + position );
             }
         }
     }