Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorM N Palat2013-07-11 11:17:39 +0000
committerM N Palat2013-07-11 11:17:39 +0000
commit328c06fa136c963530115a367863b6a931384871 (patch)
treef01986499e174f594ec28f42dee179229ed0f487 /org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LookupTest.java
parent7a4894572c8dc97616c8aa59652842aae37320e6 (diff)
downloadeclipse.jdt.core-328c06fa136c963530115a367863b6a931384871.tar.gz
eclipse.jdt.core-328c06fa136c963530115a367863b6a931384871.tar.xz
eclipse.jdt.core-328c06fa136c963530115a367863b6a931384871.zip
Fix for Bug 4009077">4009077 [1.8][compiler] Illegal combination of modifiers on
interface methods produces confusing diagnostics
Diffstat (limited to 'org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LookupTest.java')
-rw-r--r--org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LookupTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LookupTest.java b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LookupTest.java
index e117f1f0d2..8bdc3b68de 100644
--- a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LookupTest.java
+++ b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LookupTest.java
@@ -2989,7 +2989,7 @@ public void test090() {
"3. ERROR in X.java (at line 4)\n" +
" public volatile void foo() {}\n" +
" ^^^^^\n" +
- "Illegal modifier for the method foo; only public, protected, private, static, final, abstract, synchronized, strictfp & native are permitted\n" +
+ "Illegal modifier for the method foo; only public, protected, private, abstract, static, final, synchronized, native & strictfp are permitted\n" +
"----------\n"
);
}

Back to the top