Skip to content

Commit c4b0bd1

Browse files
committed
Merge pull request #20851 from olegz
* pr/20851: Change call to createClassLoader(URL) from 'super' to 'this' Closes gh-20851
2 parents 5a20403 + 9f75f30 commit c4b0bd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ protected ClassLoader createClassLoader(Iterator<Archive> archives) throws Excep
8989
if (this.classPathIndex != null) {
9090
urls.addAll(this.classPathIndex.getUrls());
9191
}
92-
return super.createClassLoader(urls.toArray(new URL[0]));
92+
return this.createClassLoader(urls.toArray(new URL[0]));
9393
}
9494

9595
private int guessClassPathSize() {

0 commit comments

Comments
 (0)