1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

fixed type that broke ISourceFileRemapping extensions.

This commit is contained in:
Warren Paul 2010-02-09 20:17:17 +00:00
parent 31dd35c469
commit 4683f554ce

View file

@ -712,7 +712,7 @@ public class ExecutablesManager extends PlatformObject implements IResourceChang
boolean failed = false;
try {
Object extObject = element.createExecutableExtension("class"); //$NON-NLS-1$
if (extObject instanceof ISourceFileRemapping) {
if (extObject instanceof ISourceFileRemappingFactory) {
sourceFileRemappingFactories.add((ISourceFileRemappingFactory)extObject);
} else {
failed = true;