diff options
-rw-r--r-- | org.aspectj.matcher/src/org/aspectj/weaver/VersionedDataInputStream.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/org.aspectj.matcher/src/org/aspectj/weaver/VersionedDataInputStream.java b/org.aspectj.matcher/src/org/aspectj/weaver/VersionedDataInputStream.java index 8e4d297d3..8414c06a1 100644 --- a/org.aspectj.matcher/src/org/aspectj/weaver/VersionedDataInputStream.java +++ b/org.aspectj.matcher/src/org/aspectj/weaver/VersionedDataInputStream.java @@ -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 |