diff options
author | Jesse Wilson <jessewilson@google.com> | 2009-10-20 18:49:47 -0700 |
---|---|---|
committer | Jesse Wilson <jessewilson@google.com> | 2009-10-20 18:49:47 -0700 |
commit | f74ea6dde177eab27518b26f4361757b5dfa1dc9 (patch) | |
tree | c2571769bf6ff50fcea0fde63db1b49b32cfeafd /nio_char | |
parent | 4a19d6a3afb37e789a273d746cd59bb6d42839b8 (diff) | |
download | libcore-f74ea6dde177eab27518b26f4361757b5dfa1dc9.zip libcore-f74ea6dde177eab27518b26f4361757b5dfa1dc9.tar.gz libcore-f74ea6dde177eab27518b26f4361757b5dfa1dc9.tar.bz2 |
Avoid shadowing fields from the superclass testcase.
Diffstat (limited to 'nio_char')
-rw-r--r-- | nio_char/src/test/java/tests/api/java/nio/charset/CharsetDecoderTest.java | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/nio_char/src/test/java/tests/api/java/nio/charset/CharsetDecoderTest.java b/nio_char/src/test/java/tests/api/java/nio/charset/CharsetDecoderTest.java index 315d667..06d7da2 100644 --- a/nio_char/src/test/java/tests/api/java/nio/charset/CharsetDecoderTest.java +++ b/nio_char/src/test/java/tests/api/java/nio/charset/CharsetDecoderTest.java @@ -42,18 +42,6 @@ public class CharsetDecoderTest extends AbstractCharsetDecoderTestCase { protected static final double AVER_BYTES = 0.5; - // default charset - private static final Charset MOCKCS = new CharsetEncoderTest.MockCharset( - "mock", new String[0]); - - Charset cs = MOCKCS; - - // default decoder - protected static CharsetDecoder decoder; - - String bom = ""; - - protected void setUp() throws Exception { cs = new CharsetEncoderTest.MockCharset("mock", new String[0]); unibytes = new byte[] { 32, 98, 117, 102, 102, 101, 114 }; |