testing git...

This commit is contained in:
Stiver 2014-03-04 15:23:12 +01:00
parent e2d0f5d9c3
commit 4f879b36b4

View File

@ -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();
}