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

[187608] upating getEntry to getResource. getEntry does not search fragments.

This commit is contained in:
David Dykstal 2007-05-21 15:58:20 +00:00
parent e5a4e4f455
commit d49c58f1af

View file

@ -372,7 +372,7 @@ public abstract class SystemBasePlugin extends AbstractUIPlugin
}
while (!candidates.isEmpty() && result == null) {
String candidate = (String) candidates.pop();
result = bundle.getEntry(candidate);
result = bundle.getResource(candidate);
}
return result;
}