Browse Source

fix compilation

Armin Schrenk 2 years ago
parent
commit
03a362e9b4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/org/cryptomator/common/mount/MountModule.java

+ 2 - 2
src/main/java/org/cryptomator/common/mount/MountModule.java

@@ -16,8 +16,8 @@ import java.util.concurrent.atomic.AtomicReference;
 public class MountModule {
 
 	private static final AtomicReference<MountService> formerSelectedMountService = new AtomicReference<>(null);
-	private static final AtomicBoolean<MountService> MAC_FUSE_SELECTED_ONCE = new AtomicBoolean(false);
-	private static final AtomicBoolean<MountService> FUSET_SELECTED_ONCE = new AtomicBoolean(false);
+	private static final AtomicBoolean MAC_FUSE_SELECTED_ONCE = new AtomicBoolean(false);
+	private static final AtomicBoolean FUSET_SELECTED_ONCE = new AtomicBoolean(false);
 
 	@Provides
 	@Singleton