Skip to content

Commit afcbc9c

Browse files
committed
spotbugs
1 parent 7fda563 commit afcbc9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/instrumentation

dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/instrumentation/ASMHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public static boolean isFinalField(Field field) {
139139
}
140140

141141
public static boolean isRecord(ClassNode classNode) {
142-
return (classNode.access & Opcodes.ACC_RECORD) > 0;
142+
return (classNode.access & Opcodes.ACC_RECORD) != 0;
143143
}
144144

145145
public static void invokeStatic(

0 commit comments

Comments
 (0)