We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c38168 commit 676d395Copy full SHA for 676d395
src/main/java/org/spongepowered/asm/launch/platform/container/ContainerHandlePath.java
@@ -38,7 +38,11 @@ public class ContainerHandlePath extends ContainerHandleURI {
38
private final Path path;
39
40
public ContainerHandlePath(Path path) {
41
- super(path.getFileName().toString(), path.toUri());
+ this(path.getFileName().toString(), path);
42
+ }
43
+
44
+ public ContainerHandlePath(String id, Path path) {
45
+ super(id, path.toUri());
46
this.path = path;
47
}
48
0 commit comments