]> source.dussan.org Git - aspectj.git/commitdiff
312839: smaller class files
authoraclement <aclement>
Tue, 18 May 2010 21:25:44 +0000 (21:25 +0000)
committeraclement <aclement>
Tue, 18 May 2010 21:25:44 +0000 (21:25 +0000)
org.aspectj.matcher/src/org/aspectj/weaver/VersionedDataInputStream.java

index 8e4d297d3f578adca04cf1c149db6a3f1951769e..8414c06a1973ed831651077e7a1e50eef7643cff 100644 (file)
@@ -55,7 +55,7 @@ public class VersionedDataInputStream extends DataInputStream {
                this.version = version;
        }
 
-       public String accessUtf8(int cpIndex) {
+       public String readUtf8(int cpIndex) {
                if (constantPoolReader == null) {
                        throw new IllegalStateException();
                }
@@ -74,10 +74,10 @@ public class VersionedDataInputStream extends DataInputStream {
        }
 
        public String readPath() throws IOException {
-               return accessUtf8(readShort());
+               return readUtf8(readShort());
        }
-       
+
        public String readSignature() throws IOException {
-               return accessUtf8(readShort());
+               return readUtf8(readShort());
        }
 }
\ No newline at end of file