File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
utbot-instrumentation/src/main/kotlin/org/utbot/instrumentation/process Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,8 @@ internal object HandlerClassesLoader : URLClassLoader(emptyArray()) {
42
42
}
43
43
44
44
/* *
45
- * System classloader can find org.slf4j and org.utbot.spring thus
46
- * - when we want to mock something from org.slf4j we also want this class will be loaded by [HandlerClassesLoader]
47
- * - we want org.utbot.spring to be loaded by [HandlerClassesLoader] so it can use Spring directly
45
+ * System classloader can find org.slf4j thus when we want to mock something from org.slf4j
46
+ * we also want this class will be loaded by [HandlerClassesLoader]
48
47
*/
49
48
override fun loadClass (name : String , resolve : Boolean ): Class <* > {
50
49
if (name.startsWith(" org.slf4j" )) {
You can’t perform that action at this time.
0 commit comments