File tree Expand file tree Collapse file tree
org/cryptomator/integrations/revealpath Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import org .cryptomator .integrations .mount .MountService ;
2- import org .cryptomator .integrations .revealpaths . RevealPathsService ;
2+ import org .cryptomator .integrations .revealpath . RevealPathService ;
33import org .cryptomator .integrations .tray .TrayMenuController ;
44import org .cryptomator .integrations .autostart .AutoStartProvider ;
55import org .cryptomator .integrations .keychain .KeychainAccessProvider ;
1515 exports org .cryptomator .integrations .common ;
1616 exports org .cryptomator .integrations .keychain ;
1717 exports org .cryptomator .integrations .mount ;
18- exports org .cryptomator .integrations .revealpaths ;
18+ exports org .cryptomator .integrations .revealpath ;
1919 exports org .cryptomator .integrations .tray ;
2020 exports org .cryptomator .integrations .uiappearance ;
2121
2222 uses AutoStartProvider ;
2323 uses KeychainAccessProvider ;
2424 uses MountService ;
25- uses RevealPathsService ;
25+ uses RevealPathService ;
2626 uses TrayIntegrationProvider ;
2727 uses TrayMenuController ;
2828 uses UiAppearanceProvider ;
Original file line number Diff line number Diff line change 1- package org .cryptomator .integrations .revealpaths ;
1+ package org .cryptomator .integrations .revealpath ;
22
33public class RevealFailedException extends Exception {
44
Original file line number Diff line number Diff line change 1- package org .cryptomator .integrations .revealpaths ;
1+ package org .cryptomator .integrations .revealpath ;
22
33import org .cryptomator .integrations .common .IntegrationsLoader ;
44
55import java .nio .file .NoSuchFileException ;
66import java .nio .file .Path ;
77import java .util .stream .Stream ;
88
9- public interface RevealPathsService {
9+ public interface RevealPathService {
1010
1111 /**
1212 * Loads all supported service providers.
1313 *
1414 * @return Stream of supported RevealPathsService implementations (may be empty)
1515 */
16- static Stream <RevealPathsService > get () {
17- return IntegrationsLoader .loadAll (RevealPathsService .class ).filter (RevealPathsService ::isSupported );
16+ static Stream <RevealPathService > get () {
17+ return IntegrationsLoader .loadAll (RevealPathService .class ).filter (RevealPathService ::isSupported );
1818 }
1919
2020 /**
You can’t perform that action at this time.
0 commit comments