Commit c4b0bd16 authored by Madhura Bhave's avatar Madhura Bhave

Merge pull request #20851 from olegz

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

Closes gh-20851
parents 5a204033 9f75f308
......@@ -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() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment