mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
Makefile.in: Rebuilt.
2000-11-22 Bryce McKinlay <bryce@albatross.co.nz> * Makefile.in: Rebuilt. * Makefile.am (core_java_source_files): Added Collections.java. * java/util/List.java: Merged from classpath. * java/util/Vector.java: Ditto. * java/util/Collections.java: From classpath. * java/util/ArrayList.java (addAll(Collection)): Call addAll(int,Collection) instead of duplicating code. (indexOf): Clean up int initialization. (clear): Set cleared array entries to null, to allow garbage collection. * java/util/List.java: Minor formatting fixes. * java/util/SimpleTimeZone.java: ditto. From-SVN: r37652
This commit is contained in:
committed by
Bryce McKinlay
parent
e9905e2d9d
commit
79af883cd4
@@ -763,7 +763,7 @@ public class SimpleTimeZone extends TimeZone
|
||||
else
|
||||
{
|
||||
int length = input.readInt();
|
||||
byte[]byteArray = new byte[length];
|
||||
byte[] byteArray = new byte[length];
|
||||
input.read(byteArray, 0, length);
|
||||
if (length >= 4)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user