mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 17:05:43 +01:00
added modules, classloading and view packages to sonia.scm.lifecycle
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package sonia.scm.lifecycle.classloading;
|
||||
|
||||
/**
|
||||
* This ClassLoader is mainly a wrapper around the web application class loader and its goal is to make it easier to
|
||||
* find it in a heap dump.
|
||||
*/
|
||||
class BootstrapClassLoader extends ClassLoader {
|
||||
BootstrapClassLoader(ClassLoader webappClassLoader) {
|
||||
super(webappClassLoader);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user