Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Peterson2013-10-31 18:43:28 +0000
committerChris2013-11-01 15:10:27 +0000
commit802e0ab714f7e3f9bf852ce72689628b218e9e62 (patch)
tree0d9ed380d572b78c3f35cdffbc1dec8ab3d0bd08
parente28f6437dd1be83cac63739f7f641b6ddfb457ab (diff)
downloadwebtools.maps-802e0ab714f7e3f9bf852ce72689628b218e9e62.tar.gz
webtools.maps-802e0ab714f7e3f9bf852ce72689628b218e9e62.tar.xz
webtools.maps-802e0ab714f7e3f9bf852ce72689628b218e9e62.zip
[419871] - DefaultInferenceProvider is always enabled
Signed-off-by: Jason Peterson <jasonpet@us.ibm.com>
-rw-r--r--bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferrenceManager.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferrenceManager.java b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferrenceManager.java
index abf69fe50..8d356ac9b 100644
--- a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferrenceManager.java
+++ b/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferrenceManager.java
@@ -109,7 +109,6 @@ public class InferrenceManager {
case InferrenceProvider.ONLY_THIS:
proposedProviders.clear();
- proposedProviders.add(inferenceProviders[0]);
proposedProviders.add(inferenceProviders[i]);
return (InferrenceProvider [] )proposedProviders.toArray(new InferrenceProvider[proposedProviders.size()]);

Back to the top