We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6553e8 commit 1842accCopy full SHA for 1842acc
utbot-spring-analyzer/src/main/kotlin/org/utbot/spring/process/SpringAnalyzerProcess.kt
@@ -131,7 +131,7 @@ class SpringAnalyzerProcess private constructor(
131
* to manage to create our internal SpringBootApplication for bean definitions analysis.
132
*/
133
private fun findRequiredSpringAnalyzerJarPath(classpathItems: List<String>): String {
134
- val testClassLoader = URLClassLoader(classpathItems.map { File(it).toURI().toURL() }.toTypedArray())
+ val testClassLoader = URLClassLoader(classpathItems.map { File(it).toURI().toURL() }.toTypedArray(), null)
135
try {
136
testClassLoader.loadClass("org.springframework.boot.builder.SpringApplicationBuilder")
137
} catch (e: ClassNotFoundException) {
0 commit comments