Skip to content

Commit 53f7b57

Browse files
committed
simplify api (for now)
1 parent 78055f9 commit 53f7b57

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

src/main/java/org/cryptomator/integrations/revealpaths/RevealPathsService.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,4 @@ static Stream<RevealPathsService> get() {
2929
//TODO: Throw IllegalArgumenException if p.getParent() == null?
3030
void reveal(Path p) throws RevealFailedException, NoSuchFileException;
3131

32-
/**
33-
* Opens the given directory in the system default file manager and highlights all files from the list.
34-
*
35-
* @param directory
36-
* @param childNames
37-
* @throws RevealFailedException If the file manager could not be opened
38-
* @throws java.nio.file.NoSuchFileException If {@code directory} does not exist or is not a directory
39-
* @throws IllegalArgumentException If {@code childNames} contains non-relative paths or paths with a name count != 1 in normalized form
40-
* @throws UnsupportedOperationException If this service implementation does not support revealing multiple files
41-
*/
42-
default void reveal(Path directory, List<Path> childNames) throws RevealFailedException, NoSuchFileException {
43-
throw new UnsupportedOperationException();
44-
}
45-
4632
}

0 commit comments

Comments
 (0)