diff options
Diffstat (limited to 'src/main/java/cuchaz/enigma/analysis/ClassCache.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/analysis/ClassCache.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/java/cuchaz/enigma/analysis/ClassCache.java b/src/main/java/cuchaz/enigma/analysis/ClassCache.java index 0bd78b3..6c8af1c 100644 --- a/src/main/java/cuchaz/enigma/analysis/ClassCache.java +++ b/src/main/java/cuchaz/enigma/analysis/ClassCache.java | |||
| @@ -85,7 +85,6 @@ public final class ClassCache implements AutoCloseable, CompiledSource { | |||
| 85 | 85 | ||
| 86 | private ClassReader getReader(String name) throws IOException { | 86 | private ClassReader getReader(String name) throws IOException { |
| 87 | Path path = fileSystem.getPath(name + ".class"); | 87 | Path path = fileSystem.getPath(name + ".class"); |
| 88 | |||
| 89 | byte[] bytes = Files.readAllBytes(path); | 88 | byte[] bytes = Files.readAllBytes(path); |
| 90 | return new ClassReader(bytes); | 89 | return new ClassReader(bytes); |
| 91 | } | 90 | } |