issue 1461: changed parent class loader to the application's class loader for default enable method of ClassLoaderProvider
| | |
| | | |
| | | |
| | | /** |
| | | * Enable this class loader provider using the default parent class |
| | | * loader. |
| | | * Enable this class loader provider using the application's |
| | | * class loader as the parent class loader |
| | | * |
| | | * @throws InitializationException |
| | | * If the class loader provider could not initialize |
| | |
| | | */ |
| | | public synchronized void enable() throws InitializationException, |
| | | IllegalStateException { |
| | | enable(null); |
| | | enable(RootCfgDefn.class.getClassLoader()); |
| | | } |
| | | |
| | | |