Skip to content

Commit

Permalink
remove URLDecoder on the jar path (wix-incubator#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
barlevalon authored and viliusl committed Apr 12, 2018
1 parent 1e8a629 commit a8988a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static List<SqlScriptSource> classPathScripts(final String pattern) {
JarFile jar;

try {
jar = new JarFile(URLDecoder.decode(jarPath, "UTF-8"));
jar = new JarFile(jarPath);
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit a8988a4

Please sign in to comment.