1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

fixed typo

This commit is contained in:
David Inglis 2004-06-10 15:53:38 +00:00
parent d0795323b6
commit ffe287c848
2 changed files with 2 additions and 2 deletions

View file

@ -154,7 +154,7 @@
<extension
point="org.eclipse.cdt.core.PathEntryContainerInitializer">
<pathEntryContainerInitializer
class="org.eclipse.cdt.make.internal.core.scannerconfig.DiscoverdPathInitializer"
class="org.eclipse.cdt.make.internal.core.scannerconfig.DiscoveredPathInitializer"
id="org.eclipse.cdt.make.core.DISCOVERED_SCANNER_INFO">
</pathEntryContainerInitializer>
</extension>

View file

@ -15,7 +15,7 @@ import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
public class DiscoverdPathInitializer extends PathEntryContainerInitializer {
public class DiscoveredPathInitializer extends PathEntryContainerInitializer {
public void initialize(IPath containerPath, ICProject project) throws CoreException {
CoreModel.getDefault().setPathEntryContainer(new ICProject[]{project}, new DiscoveredPathContainer(project.getProject()), null);