1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 553231: Apply all cleanups

Change-Id: Icc2bbbd8c9b1e5c8999cf5fdada0aa01113231c6
This commit is contained in:
Jonah Graham 2019-11-19 14:13:40 -05:00
parent c0ea43a435
commit 43e7fa1726
9 changed files with 15 additions and 13 deletions

View file

@ -32,6 +32,7 @@ public class Activator extends Plugin {
private static LaunchTargetManager launchTargetManager;
private static LaunchBarManager launchBarManager;
@Override
public void start(BundleContext bundleContext) throws Exception {
super.start(bundleContext);
plugin = this;
@ -43,6 +44,7 @@ public class Activator extends Plugin {
bundleContext.registerService(ILaunchBarManager.class, launchBarManager, null);
}
@Override
public void stop(BundleContext bundleContext) throws Exception {
super.stop(bundleContext);
plugin = null;

View file

@ -189,7 +189,7 @@ public class ConfigSelector extends CSelector {
} catch (CoreException e) {
return e.getStatus();
}
};
}
}.schedule();
}
}

View file

@ -165,7 +165,7 @@ public class LaunchBarControl implements ILaunchBarListener {
} catch (Exception ex) {
Activator.log(ex);
}
};
}
});
button.addDisposeListener(e -> image.dispose());
return button;

View file

@ -142,7 +142,7 @@ public class BuildActiveCommandHandler extends AbstractHandler {
}.schedule();
return Status.OK_STATUS;
};
}
}.schedule();
} catch (CoreException e) {

View file

@ -77,7 +77,7 @@ public class StopActiveCommandHandler extends AbstractHandler {
} catch (CoreException e) {
return e.getStatus();
}
};
}
}.schedule();
}
}

View file

@ -207,7 +207,7 @@ public class NewLaunchConfigEditPage extends WizardPage implements IPageChanging
public ILaunchConfigurationWorkingCopy getWorkingCopy() {
return super.getWorkingCopy();
}
};
}
public LaunchGroupExtension getLaunchGroup() {
if (workingCopy == null)

View file

@ -146,7 +146,7 @@ public class PerTargetLaunchConfigProviderTest {
return config;
}
};
}
@Test
public void testPopulateLaunchConfiguration() throws CoreException {

View file

@ -19,9 +19,9 @@ import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyString;
import static org.mockito.Matchers.eq;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.mock;
@ -113,7 +113,7 @@ public class LaunchBarManager2Test {
ILaunchTargetManager getLaunchTargetManager() {
return targetManager;
}
};
}
@Before
public void setUp() throws Exception {

View file

@ -16,9 +16,9 @@ package org.eclipse.launchbar.core.internal;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyString;
import static org.mockito.Matchers.eq;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.doAnswer;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;