Skip to content

Commit

Permalink
8254780: EnterInterpOnlyModeClosure::completed() always returns true
Browse files Browse the repository at this point in the history
Reviewed-by: sspitsyn, rehn
  • Loading branch information
shipilev committed Oct 14, 2020
1 parent 0c99b19 commit da2f5ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/prims/jvmtiEventController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class EnterInterpOnlyModeClosure : public HandshakeClosure {
_completed = true;
}
bool completed() {
return _completed = true;
return _completed;
}
};

Expand Down

1 comment on commit da2f5ab

@bridgekeeper
Copy link

@bridgekeeper bridgekeeper bot commented on da2f5ab Oct 14, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.