Skip to content

Commit da2f5ab

Browse files
committed
8254780: EnterInterpOnlyModeClosure::completed() always returns true
Reviewed-by: sspitsyn, rehn
1 parent 0c99b19 commit da2f5ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/prims/jvmtiEventController.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class EnterInterpOnlyModeClosure : public HandshakeClosure {
224224
_completed = true;
225225
}
226226
bool completed() {
227-
return _completed = true;
227+
return _completed;
228228
}
229229
};
230230

0 commit comments

Comments
 (0)