File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/apache/maven/shared/dependency/analyzer/asm Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,8 +120,6 @@ private static Set<String> parseConstantPoolClassReferences(ByteBuffer buf) {
120
120
for (int ix = 1 , num = buf .getChar (); ix < num ; ix ++) {
121
121
byte tag = buf .get ();
122
122
switch (tag ) {
123
- default :
124
- throw new RuntimeException ("Unknown constant pool type '" + tag + "'" );
125
123
case CONSTANT_UTF8 :
126
124
stringConstants .put (ix , decodeString (buf ));
127
125
break ;
@@ -172,6 +170,8 @@ private static Set<String> parseConstantPoolClassReferences(ByteBuffer buf) {
172
170
case CONSTANT_PACKAGE :
173
171
consumePackage (buf );
174
172
break ;
173
+ default :
174
+ throw new RuntimeException ("Unknown constant pool type '" + tag + "'" );
175
175
}
176
176
}
177
177
You can’t perform that action at this time.
0 commit comments