P1 blocker bug with loading of OSGi Extensions [message #99844] |
Tue, 16 October 2007 08:37 |
Eclipse User |
|
|
|
Originally posted by: Jan-Hendrik.Diederich.bredex.de
Hi,
I think I've found a big bug with the loading of OSGi Extensions.
private void mergeFileHookConfigurators(ArrayList configuratorList,
ArrayList errors) {
ClassLoader cl = getClass().getClassLoader();
// get all hook configurators files in your classloader delegation
Enumeration hookConfigurators;
try {
hookConfigurators = cl != null ?
cl.getResources(HookRegistry.HOOK_CONFIGURATORS_FILE)
: ClassLoader.getSystemResources(HookRegistry.HOOK_CONFIGURATO RS_FILE);
} catch (IOException e) {
errors.add(new
FrameworkLogEntry(FrameworkAdaptor.FRAMEWORK_SYMBOLICNAME,
FrameworkLogEntry.ERROR, 0, "getResources error on " +
HookRegistry.HOOK_CONFIGURATORS_FILE, 0, e, null)); //$NON-NLS-1$
return;
}
|
|
|
Powered by
FUDForum. Page generated in 0.03308 seconds