Skip to content

Commit

Permalink
don't add an extra slash after the classpath scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
Denys Zhuravel committed May 1, 2019
1 parent 437bb3a commit 6b46ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/cucumber/runtime/io/ZipResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ZipResource implements Resource {

@Override
public URI getPath() {
return URI.create(CLASSPATH_SCHEME_PREFIX + "/" + jarEntry.getName());
return URI.create(CLASSPATH_SCHEME_PREFIX + jarEntry.getName());
}

@Override
Expand Down

0 comments on commit 6b46ef3

Please sign in to comment.