File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
src/main/java/org/cryptomator/integrations/mount Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ default MountBuilder setMountpoint(Path mountPoint) {
5656 * @param mountFlags Mount flags
5757 * @return <code>this</code>
5858 * @throws UnsupportedOperationException If {@link MountCapability#MOUNT_FLAGS} is not supported
59- * @see MountService#getDefaultMountFlags(String )
59+ * @see MountService#getDefaultMountFlags()
6060 */
6161 @ Contract ("_ -> this" )
6262 default MountBuilder setMountFlags (String mountFlags ) {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public enum MountCapability {
2020 LOOPBACK_PORT ,
2121
2222 /**
23- * The provider supports {@link MountService#getDefaultMountFlags(String )}
23+ * The service provider supports {@link MountService#getDefaultMountFlags()}
2424 * and the builder requires {@link MountBuilder#setMountFlags(String)}.
2525 */
2626 MOUNT_FLAGS ,
Original file line number Diff line number Diff line change @@ -42,11 +42,10 @@ static Stream<MountService> get() {
4242 /**
4343 * Default mount flags. May be empty.
4444 *
45- * @param mountName Name of the mount in the OS
4645 * @return Concatenated String of valid mount flags
4746 * @throws UnsupportedOperationException If {@link MountCapability#MOUNT_FLAGS} is not supported
4847 */
49- default String getDefaultMountFlags (String mountName ) {
48+ default String getDefaultMountFlags () {
5049 throw new UnsupportedOperationException ();
5150 }
5251
You can’t perform that action at this time.
0 commit comments