Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors
In directory sc8-pr-cvs1:/tmp/cvs-serv26404/src/org/htmlparser/visitors
Modified Files:
HtmlPage.java
Log Message:
added EscapeRemovingNode decorator, remove lots of private methods and field that were never used in numerous classes
Index: HtmlPage.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/visitors/HtmlPage.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** HtmlPage.java 22 Jun 2003 21:37:49 -0000 1.24
--- HtmlPage.java 25 Jun 2003 03:46:37 -0000 1.25
***************
*** 75,82 ****
}
- private boolean isTitle(Tag tag) {
- return tag instanceof TitleTag;
- }
-
private boolean isTable(Tag tag) {
return tag instanceof TableTag;
--- 75,78 ----
|