Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32349
Modified Files:
PrototypicalNodeFactory.java
Log Message:
Fix Remark creation booboo.
Index: PrototypicalNodeFactory.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/PrototypicalNodeFactory.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** PrototypicalNodeFactory.java 14 Jun 2004 00:06:51 -0000 1.8
--- PrototypicalNodeFactory.java 14 Jun 2004 01:51:10 -0000 1.9
***************
*** 382,388 ****
{
ret = (Remark)(getRemarkPrototype ().clone ());
! // if (ret instanceof AbstractNode)
! // ((AbstractNode)ret).setPage (page);
! // else
{
first = start + 4; // <!--
--- 382,388 ----
{
ret = (Remark)(getRemarkPrototype ().clone ());
! if (ret instanceof AbstractNode)
! ((AbstractNode)ret).setPage (page);
! else
{
first = start + 4; // <!--
|