Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/launch
diff options
context:
space:
mode:
authorJonah Graham2018-11-20 16:20:42 +0000
committerJonah Graham2018-11-22 21:57:01 +0000
commiteeb3006e271eac4f5b319f2ca8007226efaadb58 (patch)
treee45472eb548ae7e97c3fdc4e87350672c8d315c7 /launch
parentcaf2292768deccd885b5b6989b731742e2e5edf4 (diff)
downloadorg.eclipse.cdt-eeb3006e271eac4f5b319f2ca8007226efaadb58.tar.gz
org.eclipse.cdt-eeb3006e271eac4f5b319f2ca8007226efaadb58.tar.xz
org.eclipse.cdt-eeb3006e271eac4f5b319f2ca8007226efaadb58.zip
Bug 540373: Cleanup: Remove redundant semicolons
This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Remove redundant semicolons and completing the wizard Change-Id: I3d3175cfdfadec4f815c551d486e42c9f57b80ce
Diffstat (limited to 'launch')
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate2.java2
-rw-r--r--launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/MultiLaunchConfigurationDelegate.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate2.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate2.java
index 26be3410d2c..23a1a5576ba 100644
--- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate2.java
+++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/AbstractCLaunchDelegate2.java
@@ -616,7 +616,7 @@ public abstract class AbstractCLaunchDelegate2 extends LaunchConfigurationDelega
if (location != null) {
String expandedLocation = VariablesPlugin.getDefault().getStringVariableManager()
.performStringSubstitution(location);
- ;
+
if (!expandedLocation.isEmpty()) {
return new Path(expandedLocation);
}
diff --git a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/MultiLaunchConfigurationDelegate.java b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/MultiLaunchConfigurationDelegate.java
index 879a05e77fd..e822a7bea3c 100644
--- a/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/MultiLaunchConfigurationDelegate.java
+++ b/launch/org.eclipse.cdt.launch/src/org/eclipse/cdt/launch/internal/MultiLaunchConfigurationDelegate.java
@@ -68,7 +68,7 @@ public class MultiLaunchConfigurationDelegate extends LaunchConfigurationDelegat
public static class LaunchElement {
public static enum EPostLaunchAction {
NONE, WAIT_FOR_TERMINATION, DELAY
- };
+ }
/**
* Allows us decouple the enum identifier in the code from its textual representation in the GUI

Back to the top