Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1683/src/org/htmlparser/tags
Modified Files:
LinkTag.java
Log Message:
Update version to 1.5-20050213
Includes javadoc fixes and unit test regression fixes.
Index: LinkTag.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/LinkTag.java,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -d -r1.52 -r1.53
*** LinkTag.java 31 Jul 2004 16:42:34 -0000 1.52
--- LinkTag.java 13 Feb 2005 22:45:48 -0000 1.53
***************
*** 164,169 ****
String ret;
! if (null != getChildren())
! ret = getChildren().toString();
else
ret = "";
--- 164,169 ----
String ret;
! if (null != getChildren ())
! ret = getChildren ().asString ();
else
ret = "";
|