Skip to content

Commit b7b08e1

Browse files
committed
fix merge issues
1 parent b518d04 commit b7b08e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/com/mebigfatguy/fbcontrib/detect/AkkaIssues.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
*/
1919
package com.mebigfatguy.fbcontrib.detect;
2020

21+
import org.apache.bcel.Const;
2122
import org.apache.bcel.Repository;
2223
import org.apache.bcel.classfile.Code;
2324
import org.apache.bcel.classfile.JavaClass;
@@ -93,7 +94,7 @@ public void sawOpcode(int seen) {
9394
Integer userValue = null;
9495
try {
9596
switch (seen) {
96-
case INVOKEVIRTUAL:
97+
case Const.INVOKEVIRTUAL:
9798
String methodName = getNameConstantOperand();
9899
if ("route".equals(methodName) || "concat".equals(methodName)) {
99100
String clsName = getClassConstantOperand();
@@ -132,7 +133,7 @@ public void sawOpcode(int seen) {
132133
}
133134
break;
134135

135-
case ANEWARRAY:
136+
case Const.ANEWARRAY:
136137
if (stack.getStackDepth() > 0) {
137138
OpcodeStack.Item itm = stack.getStackItem(0);
138139
userValue = (Integer) itm.getConstant();

0 commit comments

Comments
 (0)