Browse Source

renaming class

Armin Schrenk 1 year ago
parent
commit
c63837c4ce

+ 2 - 2
src/main/java/module-info.java

@@ -2,7 +2,7 @@ import ch.qos.logback.classic.spi.Configurator;
 import org.cryptomator.common.locationpresets.DropboxLinuxLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.DropboxMacLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.DropboxWindowsLocationPresetsProvider;
-import org.cryptomator.common.locationpresets.GoogleDriveLocationPresetsProvider;
+import org.cryptomator.common.locationpresets.GoogleDriveWindowsLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.GoogleDriveMacLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.ICloudMacLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.ICloudWindowsLocationPresetsProvider;
@@ -57,7 +57,7 @@ open module org.cryptomator.desktop {
 	provides LocationPresetsProvider with DropboxMacLocationPresetsProvider, //
 			DropboxWindowsLocationPresetsProvider, DropboxLinuxLocationPresetsProvider, //
 			ICloudMacLocationPresetsProvider, ICloudWindowsLocationPresetsProvider, //
-			GoogleDriveLocationPresetsProvider, GoogleDriveMacLocationPresetsProvider, //
+			GoogleDriveWindowsLocationPresetsProvider, GoogleDriveMacLocationPresetsProvider, //
 			PCloudLocationPresetsProvider, MegaLocationPresetsProvider, //
 			OneDriveLinuxLocationPresetsProvider, OneDriveWindowsLocationPresetsProvider, //
 			OneDriveMacLocationPresetsProvider;

+ 1 - 2
src/main/java/org/cryptomator/common/locationpresets/GoogleDriveLocationPresetsProvider.java

@@ -7,12 +7,11 @@ import java.nio.file.Files;
 import java.nio.file.Path;
 import java.util.stream.Stream;
 
-import static org.cryptomator.integrations.common.OperatingSystem.Value.MAC;
 import static org.cryptomator.integrations.common.OperatingSystem.Value.WINDOWS;
 
 @OperatingSystem(WINDOWS)
 @CheckAvailability
-public final class GoogleDriveLocationPresetsProvider implements LocationPresetsProvider {
+public final class GoogleDriveWindowsLocationPresetsProvider implements LocationPresetsProvider {
 
 	private static final Path LOCATION = LocationPresetsProvider.resolveLocation("~/Google Drive");