1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-05-04 00:26:59 +00:00
parent 241d1dcfa9
commit 3b5439c8ea

View file

@ -12,7 +12,6 @@
package org.eclipse.cdt.internal.core.index; package org.eclipse.cdt.internal.core.index;
import com.ibm.icu.text.MessageFormat;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
import java.util.HashMap; import java.util.HashMap;
@ -33,6 +32,7 @@ import org.eclipse.cdt.internal.core.index.provider.IndexProviderManager;
import org.eclipse.cdt.internal.core.pdom.PDOMManager; import org.eclipse.cdt.internal.core.pdom.PDOMManager;
import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.CoreException;
import org.eclipse.osgi.util.NLS;
/** /**
* Class that creates indexes based on PDOMs * Class that creates indexes based on PDOMs
@ -80,7 +80,7 @@ public class IndexFactory {
if (!addDependencies) { if (!addDependencies) {
projects= selectedProjects.toArray(new ICProject[selectedProjects.size()]); projects= selectedProjects.toArray(new ICProject[selectedProjects.size()]);
selectedProjects.clear(); selectedProjects.clear();
// don't clear the map, so projects are not selected again // Don't clear the map, so projects are not selected again.
selectedProjects= getProjects(projects, true, false, map, new Integer(2)); selectedProjects= getProjects(projects, true, false, map, new Integer(2));
for (ICProject cproject : selectedProjects) { for (ICProject cproject : selectedProjects) {
IIndexFragment pdom= fPDOMManager.getPDOM(cproject); IIndexFragment pdom= fPDOMManager.getPDOM(cproject);
@ -101,8 +101,7 @@ public class IndexFactory {
IWritableIndexFragment pdom= (IWritableIndexFragment) fPDOMManager.getPDOM(project); IWritableIndexFragment pdom= (IWritableIndexFragment) fPDOMManager.getPDOM(project);
if (pdom == null) { if (pdom == null) {
throw new CoreException(CCorePlugin.createStatus( throw new CoreException(CCorePlugin.createStatus(
MessageFormat.format(Messages.IndexFactory_errorNoSuchPDOM0, NLS.bind(Messages.IndexFactory_errorNoSuchPDOM0, project.getElementName())));
new Object[] { project.getElementName() })));
} }
safeAddProvidedFragments(project, readOnlyFrag); safeAddProvidedFragments(project, readOnlyFrag);