We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bef9fe commit 9730651Copy full SHA for 9730651
src/main/java/org/scijava/annotations/ByteCodeAnalyzer.java
@@ -116,9 +116,10 @@ private void getConstantPoolOffsets() {
116
for (int i = 0; i < poolCount; i++) {
117
poolOffsets[i] = offset;
118
final int tag = getU1(offset);
119
- if (tag == 7 || tag == 8) offset += 3;
+ if (tag == 7 || tag == 8 || tag == 16) offset += 3;
120
+ else if (tag == 15) offset += 4;
121
else if (tag == 3 || tag == 4 || tag == 9 || tag == 10
- || tag == 11 || tag == 12) offset += 5;
122
+ || tag == 11 || tag == 12 || tag == 18) offset += 5;
123
else if (tag == 5 || tag == 6) {
124
poolOffsets[++i] = offset;
125
offset += 9;
0 commit comments