We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fda563 commit afcbc9cCopy full SHA for afcbc9c
1 file changed
dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/instrumentation/ASMHelper.java
@@ -139,7 +139,7 @@ public static boolean isFinalField(Field field) {
139
}
140
141
public static boolean isRecord(ClassNode classNode) {
142
- return (classNode.access & Opcodes.ACC_RECORD) > 0;
+ return (classNode.access & Opcodes.ACC_RECORD) != 0;
143
144
145
public static void invokeStatic(
0 commit comments