Skip to content

Commit e66e31a

Browse files
committed
Sort members
1 parent f3bb798 commit e66e31a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/apache/commons/io/build/AbstractOrigin.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -399,11 +399,6 @@ public File getFile() {
399399
return getPath().toFile();
400400
}
401401

402-
@Override
403-
public Path getPath() {
404-
return Paths.get(get());
405-
}
406-
407402
@Override
408403
public InputStream getInputStream(final OpenOption... options) throws IOException {
409404
final URI uri = get();
@@ -417,6 +412,11 @@ public InputStream getInputStream(final OpenOption... options) throws IOExceptio
417412
}
418413
return Files.newInputStream(getPath(), options);
419414
}
415+
416+
@Override
417+
public Path getPath() {
418+
return Paths.get(get());
419+
}
420420
}
421421

422422
/**

0 commit comments

Comments
 (0)