Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Dec 6, 2024
1 parent 542bb71 commit a612c9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/core/src/zserio/tools/ExtensionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ private ClassLoader getClassLoader()
System.out.println("Found file: " + file);
if (isFileZserioExtension(file))
{
urlArray.add(new URI("jar:file:" + file.getPath() + "!/").toURL());
urlArray.add(new URL("jar:file:" + file.getPath() + "!/"));
urlArray.addAll(getDependentJarsFromManifest(file));
}
}
}
catch (MalformedURLException | URISyntaxException excpt)
catch (MalformedURLException excpt)
{
System.out.println("Exception!");
return currentClassLoader;
Expand Down

0 comments on commit a612c9a

Please sign in to comment.