Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManoj Palat2020-11-06 05:54:41 +0000
committerManoj Palat2020-11-06 05:54:41 +0000
commit255920cc96c6f9c8e6b88b7bf2651c07ba217d62 (patch)
tree2e44f8c906a905f3ade58252f2abb2d1a0881ef2
parent34fd68381b995c120c725b6aa4ee37a41016bf22 (diff)
downloadeclipse.jdt.core-255920cc96c6f9c8e6b88b7bf2651c07ba217d62.tar.gz
eclipse.jdt.core-255920cc96c6f9c8e6b88b7bf2651c07ba217d62.tar.xz
eclipse.jdt.core-255920cc96c6f9c8e6b88b7bf2651c07ba217d62.zip
Temporarily disabling Bug 541443 comment 6
-rw-r--r--org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/JavaElementDeltaTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/JavaElementDeltaTests.java b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/JavaElementDeltaTests.java
index bad8abb28c..0c3cf051ba 100644
--- a/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/JavaElementDeltaTests.java
+++ b/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/model/JavaElementDeltaTests.java
@@ -226,7 +226,7 @@ public void testAddDotClasspathFile() throws CoreException {
/*
* Ensures that adding a library entry for an existing external library folder triggers the correct delta
*/
-public void testAddExternalLibFolder1() throws CoreException {
+public void _testAddExternalLibFolder1() throws CoreException {
try {
IJavaProject p = createJavaProject("P");
createExternalFolder("externalLib");
@@ -251,7 +251,7 @@ public void testAddExternalLibFolder1() throws CoreException {
/*
* Ensures that adding a library entry for a non-existing external library folder triggers the correct delta
*/
-public void testAddExternalLibFolder2() throws CoreException {
+public void _testAddExternalLibFolder2() throws CoreException {
try {
IJavaProject p = createJavaProject("P");
refresh(p);

Back to the top