You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2003/09/07 16:36:59 UTC

cvs commit: jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/buf MessageBytes.java

remm        2003/09/07 07:36:59

  Modified:    util/java/org/apache/tomcat/util/buf MessageBytes.java
  Log:
  - toChars should set the type to chars.
  
  Revision  Changes    Path
  1.9       +1 -0      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.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- MessageBytes.java	29 Jan 2003 15:20:25 -0000	1.8
  +++ MessageBytes.java	7 Sep 2003 14:36:59 -0000	1.9
  @@ -285,6 +285,7 @@
   	toString();
   	char cc[]=strValue.toCharArray();
   	charC.setChars(cc, 0, cc.length);
  +	type=T_CHARS;
       }