Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipe Mulet2004-04-28 09:20:19 +0000
committerPhilipe Mulet2004-04-28 09:20:19 +0000
commit758a7a02e31da0e30447cfe86ed7adc102814075 (patch)
tree8793172bccec4f3892cdb988a678e951625a05c3 /org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties
parentc88bfef6111aa7676b6409692078e558326af2f3 (diff)
downloadeclipse.jdt.core-758a7a02e31da0e30447cfe86ed7adc102814075.tar.gz
eclipse.jdt.core-758a7a02e31da0e30447cfe86ed7adc102814075.tar.xz
eclipse.jdt.core-758a7a02e31da0e30447cfe86ed7adc102814075.zip
unnecessary else
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties
index 0734252cd0..6beb72529a 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/problem/messages.properties
@@ -152,7 +152,7 @@
186 = The declared exception {2} is not actually thrown by the constructor {0}({1})
187 = Unreachable catch block for {0}. It is already handled by the catch block for {1}
188 = Empty control-flow statement
-
+189 = Statement unnecessarily nested within else clause. The corresponding then clause does not complete normally
190 = Read access to enclosing field {0}.{1} is emulated by a synthetic accessor method. Increasing its visibility will improve your performance
191 = Write access to enclosing field {0}.{1} is emulated by a synthetic accessor method. Increasing its visibility will improve your performance
192 = Access to enclosing method {1}({2}) from the type {0} is emulated by a synthetic accessor method. Increasing its visibility will improve your performance

Back to the top