mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 18:35:32 +02:00
[187608] upating getEntry to getResource. getEntry does not search fragments.
This commit is contained in:
parent
e5a4e4f455
commit
d49c58f1af
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ public abstract class SystemBasePlugin extends AbstractUIPlugin
|
||||||
}
|
}
|
||||||
while (!candidates.isEmpty() && result == null) {
|
while (!candidates.isEmpty() && result == null) {
|
||||||
String candidate = (String) candidates.pop();
|
String candidate = (String) candidates.pop();
|
||||||
result = bundle.getEntry(candidate);
|
result = bundle.getResource(candidate);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue