Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 426728
Collapse All | Expand All

(-)a/bundles/org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/core/infer/InferrenceManager.java (-3 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2005, 2013 IBM Corporation and others.
2
 * Copyright (c) 2005, 2014 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 109-115 public class InferrenceManager { Link Here
109
109
110
				case InferrenceProvider.ONLY_THIS:
110
				case InferrenceProvider.ONLY_THIS:
111
					proposedProviders.clear();
111
					proposedProviders.clear();
112
					proposedProviders.add(inferenceProviders[0]);
112
//					proposedProviders.add(inferenceProviders[0]);
113
					proposedProviders.add(inferenceProviders[i]);
113
					proposedProviders.add(inferenceProviders[i]);
114
					return (InferrenceProvider [] )proposedProviders.toArray(new InferrenceProvider[proposedProviders.size()]);
114
					return (InferrenceProvider [] )proposedProviders.toArray(new InferrenceProvider[proposedProviders.size()]);
115
115
116
- 

Return to bug 426728