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:
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;
|
||||
try {
|
||||
Object extObject = element.createExecutableExtension("class"); //$NON-NLS-1$
|
||||
if (extObject instanceof ISourceFileRemapping) {
|
||||
if (extObject instanceof ISourceFileRemappingFactory) {
|
||||
sourceFileRemappingFactories.add((ISourceFileRemappingFactory)extObject);
|
||||
} else {
|
||||
failed = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue