瀏覽代碼

fix compile errors

Armin Schrenk 1 年之前
父節點
當前提交
710cdf800d
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      src/main/java/module-info.java

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

@@ -1,7 +1,6 @@
 import ch.qos.logback.classic.spi.Configurator;
 import org.cryptomator.common.locationpresets.DropboxMacLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.DropboxWindowsLocationPresetsProvider;
-import org.cryptomator.common.locationpresets.GoogleDriveMacLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.GoogleDriveLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.ICloudMacLocationPresetsProvider;
 import org.cryptomator.common.locationpresets.ICloudWindowsLocationPresetsProvider;
@@ -55,6 +54,6 @@ open module org.cryptomator.desktop {
 	provides LocationPresetsProvider with DropboxMacLocationPresetsProvider, //
 			DropboxWindowsLocationPresetsProvider, ICloudMacLocationPresetsProvider, //
 			ICloudWindowsLocationPresetsProvider, GoogleDriveLocationPresetsProvider, //
-			GoogleDriveMacLocationPresetsProvider, PCloudLocationPresetsProvider, //
-			MegaLocationPresetsProvider, OneDriveLocationPresetsProvider, OneDriveWindowsLocationPresetsProvider;
+			PCloudLocationPresetsProvider, MegaLocationPresetsProvider, //
+			OneDriveLocationPresetsProvider, OneDriveWindowsLocationPresetsProvider;
 }