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:
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) {
|
||||
@Override
|
||||
protected void handleSuccess() {
|
||||
if (isSuccess() && !fDisposed && getData().booleanValue()) {
|
||||
if (!fDisposed && getData().booleanValue()) {
|
||||
listener.suspended(fLaunch, null);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue