Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18039/src/org/htmlparser
Modified Files:
PrototypicalNodeFactory.java Attribute.java
Log Message:
Remove unused variables and other fixes exposed by turning on compiler warnings.
Index: Attribute.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/Attribute.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Attribute.java 17 Jul 2004 13:45:05 -0000 1.2
--- Attribute.java 31 Jul 2004 16:42:35 -0000 1.3
***************
*** 685,692 ****
public String toString ()
{
- String name;
- String assignment;
- String value;
- char quote;
int length;
StringBuffer ret;
--- 685,688 ----
Index: PrototypicalNodeFactory.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/PrototypicalNodeFactory.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** PrototypicalNodeFactory.java 18 Jul 2004 21:31:22 -0000 1.12
--- PrototypicalNodeFactory.java 31 Jul 2004 16:42:35 -0000 1.13
***************
*** 386,391 ****
public Remark createRemarkNode (Page page, int start, int end)
{
- int first;
- int last;
Remark ret;
--- 386,389 ----
|