summaryrefslogtreecommitdiffstats
path: root/src/org/jetbrains/java/decompiler/struct/consts
diff options
context:
space:
mode:
authorRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-08-29 16:05:51 +0400
committerRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-08-29 21:57:50 +0400
commit63b8d35d08a198215ddabb42cca5b0e823232768 (patch)
tree24a7567182d81c4382e966e86be25ba5badfda09 /src/org/jetbrains/java/decompiler/struct/consts
parent84ea54eb1e2c68091080951a3024cca98f70aca2 (diff)
downloadfernflower-63b8d35d08a198215ddabb42cca5b0e823232768.tar
fernflower-63b8d35d08a198215ddabb42cca5b0e823232768.tar.gz
fernflower-63b8d35d08a198215ddabb42cca5b0e823232768.tar.lz
fernflower-63b8d35d08a198215ddabb42cca5b0e823232768.tar.xz
fernflower-63b8d35d08a198215ddabb42cca5b0e823232768.zip
java-decompiler: post-import cleanup (dead code dropped)
Diffstat (limited to 'src/org/jetbrains/java/decompiler/struct/consts')
-rw-r--r--src/org/jetbrains/java/decompiler/struct/consts/ConstantPool.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/org/jetbrains/java/decompiler/struct/consts/ConstantPool.java b/src/org/jetbrains/java/decompiler/struct/consts/ConstantPool.java
index ac3c5a5..a352213 100644
--- a/src/org/jetbrains/java/decompiler/struct/consts/ConstantPool.java
+++ b/src/org/jetbrains/java/decompiler/struct/consts/ConstantPool.java
@@ -24,7 +24,6 @@ import org.jetbrains.java.decompiler.struct.gen.VarType;
import java.io.DataInputStream;
import java.io.DataOutputStream;
-import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
@@ -125,7 +124,7 @@ public class ConstantPool {
// public methods
// *****************************************************************************
- public void writeToOutputStream(DataOutputStream out) throws FileNotFoundException, IOException {
+ public void writeToOutputStream(DataOutputStream out) throws IOException {
out.writeShort(pool.size());
for (int i = 1; i < pool.size(); i++) {