summaryrefslogtreecommitdiffstats
path: root/luni/src/test/etc/loading-test-jar
diff options
context:
space:
mode:
authorJesse Wilson <jessewilson@google.com>2011-02-07 15:09:16 -0800
committerJesse Wilson <jessewilson@google.com>2011-02-07 15:09:16 -0800
commit6186821cb13f4ac7ff50950c813394367e021eae (patch)
tree2f5ae84d870a314f06cc081c682b7a5a5e1cb292 /luni/src/test/etc/loading-test-jar
parente5720bcc0ac6587d152f2e8525eb2fc35c46bb0c (diff)
downloadlibcore-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.java2
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) {