Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17914/tags
Modified Files:
BodyTag.java
Log Message:
Fix bug #1375230 some javascript breaks stringbean
Retrace non-conforming end of remark.
Index: BodyTag.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/BodyTag.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** BodyTag.java 10 Apr 2005 23:20:45 -0000 1.22
--- BodyTag.java 19 Mar 2006 21:26:32 -0000 1.23
***************
*** 86,97 ****
return toPlainTextString();
}
-
- /**
- * Return a string representation of this <code>BODY</code> tag suitable for debugging.
- * @return A string representing this <code>BODY</code> tag.
- */
- public String toString()
- {
- return "BODY: "+getBody();
- }
}
--- 86,88 ----
|