diff options
author | Jesse Wilson <jessewilson@google.com> | 2011-02-07 15:09:16 -0800 |
---|---|---|
committer | Jesse Wilson <jessewilson@google.com> | 2011-02-07 15:09:16 -0800 |
commit | 6186821cb13f4ac7ff50950c813394367e021eae (patch) | |
tree | 2f5ae84d870a314f06cc081c682b7a5a5e1cb292 /luni/src/test/etc/loading-test-jar | |
parent | e5720bcc0ac6587d152f2e8525eb2fc35c46bb0c (diff) | |
download | libcore-6186821cb13f4ac7ff50950c813394367e021eae.zip libcore-6186821cb13f4ac7ff50950c813394367e021eae.tar.gz libcore-6186821cb13f4ac7ff50950c813394367e021eae.tar.bz2 |
Move libcore.base classes to libcore.util and libcore.io.
Change-Id: I2340a9dbad3561fa681a8ab47d4f406e72c913e3
Diffstat (limited to 'luni/src/test/etc/loading-test-jar')
-rw-r--r-- | luni/src/test/etc/loading-test-jar/TestMethods.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luni/src/test/etc/loading-test-jar/TestMethods.java b/luni/src/test/etc/loading-test-jar/TestMethods.java index fd40163..bc22dc3 100644 --- a/luni/src/test/etc/loading-test-jar/TestMethods.java +++ b/luni/src/test/etc/loading-test-jar/TestMethods.java @@ -64,7 +64,7 @@ public class TestMethods { * Fully read the contents of the given stream. */ public static byte[] readFully(InputStream in) throws IOException { - // This is a copy of the same-named method in libcore.base.Streams. + // This is a copy of the same-named method in libcore.io.Streams. byte[] buffer = new byte[1024]; ByteArrayOutputStream bytes = new ByteArrayOutputStream(); while (true) { |