mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 01:15:44 +01:00
12 lines
318 B
Java
12 lines
318 B
Java
|
|
package sonia.scm.boot;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 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);
|
||
|
|
}
|
||
|
|
}
|