hgomez 2003/10/01 00:52:21 Modified: util/java/org/apache/tomcat/util/buf MessageBytes.java Log: Comments. Should we check hasStrValue in the isNull ??? Revision Changes Path 1.10 +2 -1 jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf/MessageBytes.java Index: MessageBytes.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf/MessageBytes.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- MessageBytes.java 7 Sep 2003 14:36:59 -0000 1.9 +++ MessageBytes.java 1 Oct 2003 07:52:21 -0000 1.10 @@ -137,7 +137,8 @@ } public boolean isNull() { - return byteC.isNull() && charC.isNull() && ! hasStrValue; +// should we check also hasStrValue ??? + return byteC.isNull() && charC.isNull() && ! hasStrValue; // bytes==null && strValue==null; }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]