StringBuffer patch.

2000-04-01 Thread Mo DeJong
Hello. Between revisions 1.11 and 1.12 of libraries/javalib/java/lang/StringBuffer.java the access of the StringBuffer.ensureCapacity(int)V method was changed from public to private. +private void ensureCapacity(int minCapacity) { + if (minCapacity = 0) + return; +

Re: StringBuffer patch.

2000-04-01 Thread Archie Cobbs
Mo DeJong writes: Between revisions 1.11 and 1.12 of libraries/javalib/java/lang/StringBuffer.java the access of the StringBuffer.ensureCapacity(int)V method was changed from public to private. Oops, my fault -- should be fixed now. -Archie