We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41ff2b4 commit 19048c4Copy full SHA for 19048c4
src/main/java/org/cryptomator/integrations/mount/Mount.java
@@ -24,7 +24,7 @@ public interface Mount extends AutoCloseable {
24
* @throws UnmountFailedException If the unmount was not successful.
25
* @see #unmountForced()
26
*/
27
- void unmout() throws UnmountFailedException;
+ void unmount() throws UnmountFailedException;
28
29
/**
30
* If supported, force-unmount the volume.
@@ -37,7 +37,7 @@ default void unmountForced() throws UnmountFailedException {
37
}
38
39
default void close() throws UnmountFailedException {
40
- unmout();
+ unmount();
41
42
43
0 commit comments