Skip to content

Commit

Permalink
Fix spotbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadow-Devil committed Jun 10, 2024
1 parent ce4e3bb commit 6874aa0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public void setValue(LocalVariableProxyImpl localVariable, Value value)
try {
final LocalVariable variable = localVariable.getVariable();
final StackFrame stackFrame = getStackFrame();
stackFrame.setValue(variable, (value instanceof ObjectReference) ? value : value);
stackFrame.setValue(variable, value);
if (myAllValues != null) {
// update cached data if any
// re-read the value just set from the stackframe to be 100% sure
Expand Down

0 comments on commit 6874aa0

Please sign in to comment.