mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
fixed type that broke ISourceFileRemapping extensions.
This commit is contained in:
parent
31dd35c469
commit
4683f554ce
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ public class ExecutablesManager extends PlatformObject implements IResourceChang
|
||||||
boolean failed = false;
|
boolean failed = false;
|
||||||
try {
|
try {
|
||||||
Object extObject = element.createExecutableExtension("class"); //$NON-NLS-1$
|
Object extObject = element.createExecutableExtension("class"); //$NON-NLS-1$
|
||||||
if (extObject instanceof ISourceFileRemapping) {
|
if (extObject instanceof ISourceFileRemappingFactory) {
|
||||||
sourceFileRemappingFactories.add((ISourceFileRemappingFactory)extObject);
|
sourceFileRemappingFactories.add((ISourceFileRemappingFactory)extObject);
|
||||||
} else {
|
} else {
|
||||||
failed = true;
|
failed = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue