summaryrefslogtreecommitdiffstats
path: root/src/de
diff options
context:
space:
mode:
authorStiver <stiver.mail@gmail.com>2014-03-04 15:23:12 +0100
committerStiver <stiver.mail@gmail.com>2014-03-04 15:23:12 +0100
commit4f879b36b494a276e5b978c5a68a854c290ef51e (patch)
tree0883b662e615ec4a36bc5f3cffdffe00f3e4194f /src/de
parente2d0f5d9c38561d67f23754c00addb4a3547efb2 (diff)
downloadfernflower-4f879b36b494a276e5b978c5a68a854c290ef51e.tar
fernflower-4f879b36b494a276e5b978c5a68a854c290ef51e.tar.gz
fernflower-4f879b36b494a276e5b978c5a68a854c290ef51e.tar.lz
fernflower-4f879b36b494a276e5b978c5a68a854c290ef51e.tar.xz
fernflower-4f879b36b494a276e5b978c5a68a854c290ef51e.zip
testing git...
Diffstat (limited to 'src/de')
-rw-r--r--src/de/fernflower/struct/consts/ConstantPool.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/de/fernflower/struct/consts/ConstantPool.java b/src/de/fernflower/struct/consts/ConstantPool.java
index a9dd775..72ade37 100644
--- a/src/de/fernflower/struct/consts/ConstantPool.java
+++ b/src/de/fernflower/struct/consts/ConstantPool.java
@@ -117,20 +117,6 @@ public class ConstantPool {
}
}
-// // second pass: resolve the elements referencing constants resolved at the first pass
-// for (int i = 1; i < size; i++) {
-// if (pass[i] == 1) {
-// pool.get(i).resolveConstant(this);
-// }
-// }
-//
-// // third pass: resolve the elements referencing constants resolved at the second pass
-// for (int i = 1; i < size; i++) {
-// if (pass[i] == 2) {
-// pool.get(i).resolveConstant(this);
-// }
-// }
-
// get global constant pool interceptor instance, if any available
interceptor = DecompilerContext.getPoolInterceptor();
}