Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser
In directory sc8-pr-cvs1:/tmp/cvs-serv3361/src/org/htmlparser
Modified Files:
StringNode.java
Log Message:
Index: StringNode.java
===================================================================
RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/StringNode.java,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** StringNode.java 25 Jun 2003 05:03:08 -0000 1.26
--- StringNode.java 25 Jun 2003 05:07:56 -0000 1.27
***************
*** 61,65 ****
StringBuffer textBuffer, int textBegin, int textEnd,
boolean shouldDecode, boolean shouldRemoveEscapeCharacters,
! boolean shouldConvertNonBlankSpace) {
Node newNode = new StringNode(textBuffer, textBegin, textEnd);
if (shouldDecode)
--- 61,65 ----
StringBuffer textBuffer, int textBegin, int textEnd,
boolean shouldDecode, boolean shouldRemoveEscapeCharacters,
! boolean shouldConvertNonBlankingSpace) {
Node newNode = new StringNode(textBuffer, textBegin, textEnd);
if (shouldDecode)
***************
*** 67,71 ****
if (shouldRemoveEscapeCharacters)
newNode = new EscapeCharacterRemovingNode(newNode);
! if (shouldConvertNonBlankSpace)
newNode = new NonBreakingSpaceConvertingNode(newNode);
return newNode;
--- 67,71 ----
if (shouldRemoveEscapeCharacters)
newNode = new EscapeCharacterRemovingNode(newNode);
! if (shouldConvertNonBlankingSpace)
newNode = new NonBreakingSpaceConvertingNode(newNode);
return newNode;
|