Merge pull request #20851 from olegz

* pr/20851:
  Change call to createClassLoader(URL) from 'super' to 'this'

Closes gh-20851
This commit is contained in:
Madhura Bhave 2020-04-06 10:43:17 -07:00
commit c4b0bd1698
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public abstract class ExecutableArchiveLauncher extends Launcher {
if (this.classPathIndex != null) {
urls.addAll(this.classPathIndex.getUrls());
}
return super.createClassLoader(urls.toArray(new URL[0]));
return this.createClassLoader(urls.toArray(new URL[0]));
}
private int guessClassPathSize() {