We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc7cbc9 commit 2683b1cCopy full SHA for 2683b1c
compiler/core/src/zserio/tools/ExtensionManager.java
@@ -122,12 +122,12 @@ private ClassLoader getClassLoader()
122
{
123
if (isFileZserioExtension(file))
124
125
- urlArray.add(new URL("file:" + file.getPath()));
+ urlArray.add(new URI("file:" + file.getPath()).toURL());
126
urlArray.addAll(getDependentJarsFromManifest(file));
127
}
128
129
130
- catch (MalformedURLException excpt)
+ catch (MalformedURLException | URISyntaxException excpt)
131
132
return currentClassLoader;
133
0 commit comments