1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

[300586] (comment#9) - Removed redundant call to isSuccess().

This commit is contained in:
Pawel Piech 2010-02-11 19:02:47 +00:00
parent faae34208e
commit 2eab325df7

View file

@ -86,7 +86,7 @@ public class DsfSuspendTrigger implements ISuspendTrigger {
getIsLaunchSuspended(new DataRequestMonitor<Boolean>(ImmediateExecutor.getInstance(), null) {
@Override
protected void handleSuccess() {
if (isSuccess() && !fDisposed && getData().booleanValue()) {
if (!fDisposed && getData().booleanValue()) {
listener.suspended(fLaunch, null);
}
}