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 );
             }
         }
     }


Reply via email to