Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2004-06-29 16:54:11 +0000
committerDarin Swanson2004-06-29 16:54:11 +0000
commit3b0d799d594be3f3a892b0d9223b6b12c7c249a0 (patch)
tree2993a14c51a7a1ee6abbbfb427183296d6b6bbb2 /org.eclipse.debug.core/core/org/eclipse/debug/core/model/LaunchConfigurationDelegate.java
parent0d68861764e3fda3445e64fee39526e6ea5eb1d4 (diff)
downloadeclipse.platform.debug-3b0d799d594be3f3a892b0d9223b6b12c7c249a0.tar.gz
eclipse.platform.debug-3b0d799d594be3f3a892b0d9223b6b12c7c249a0.tar.xz
eclipse.platform.debug-3b0d799d594be3f3a892b0d9223b6b12c7c249a0.zip
Removed unnecessary else clause
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/LaunchConfigurationDelegate.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/LaunchConfigurationDelegate.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/LaunchConfigurationDelegate.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/LaunchConfigurationDelegate.java
index 5420e7f73..9fdc2c54a 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/LaunchConfigurationDelegate.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/LaunchConfigurationDelegate.java
@@ -289,9 +289,9 @@ public abstract class LaunchConfigurationDelegate implements ILaunchConfiguratio
Integer severity = (Integer)problemMarker.getAttribute(IMarker.SEVERITY);
if (severity != null) {
return severity.intValue() >= IMarker.SEVERITY_ERROR;
- } else {
- return false;
- }
+ }
+
+ return false;
}
/**

Back to the top