mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
[300586] (comment#9) - Removed redundant call to isSuccess().
This commit is contained in:
parent
faae34208e
commit
2eab325df7
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ public class DsfSuspendTrigger implements ISuspendTrigger {
|
||||||
getIsLaunchSuspended(new DataRequestMonitor<Boolean>(ImmediateExecutor.getInstance(), null) {
|
getIsLaunchSuspended(new DataRequestMonitor<Boolean>(ImmediateExecutor.getInstance(), null) {
|
||||||
@Override
|
@Override
|
||||||
protected void handleSuccess() {
|
protected void handleSuccess() {
|
||||||
if (isSuccess() && !fDisposed && getData().booleanValue()) {
|
if (!fDisposed && getData().booleanValue()) {
|
||||||
listener.suspended(fLaunch, null);
|
listener.suspended(fLaunch, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue