mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
fixed typo
This commit is contained in:
parent
d0795323b6
commit
ffe287c848
2 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.cdt.core.PathEntryContainerInitializer">
|
point="org.eclipse.cdt.core.PathEntryContainerInitializer">
|
||||||
<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">
|
id="org.eclipse.cdt.make.core.DISCOVERED_SCANNER_INFO">
|
||||||
</pathEntryContainerInitializer>
|
</pathEntryContainerInitializer>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
|
@ -15,7 +15,7 @@ import org.eclipse.core.runtime.CoreException;
|
||||||
import org.eclipse.core.runtime.IPath;
|
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 {
|
public void initialize(IPath containerPath, ICProject project) throws CoreException {
|
||||||
CoreModel.getDefault().setPathEntryContainer(new ICProject[]{project}, new DiscoveredPathContainer(project.getProject()), null);
|
CoreModel.getDefault().setPathEntryContainer(new ICProject[]{project}, new DiscoveredPathContainer(project.getProject()), null);
|
Loading…
Add table
Reference in a new issue