Skip to content

Commit 4ac94c6

Browse files
committed
Actualize HandlerClassesLoader.loadClass javadoc
1 parent 48ad2d5 commit 4ac94c6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

utbot-instrumentation/src/main/kotlin/org/utbot/instrumentation/process/InstrumentedProcessMain.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ internal object HandlerClassesLoader : URLClassLoader(emptyArray()) {
4242
}
4343

4444
/**
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]
4847
*/
4948
override fun loadClass(name: String, resolve: Boolean): Class<*> {
5049
if (name.startsWith("org.slf4j")) {

0 commit comments

Comments
 (0)