浏览代码

fixed error message and removed wrong comment [ci skip]

Tobias Hagemann 5 年之前
父节点
当前提交
9a9b19e6e2
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      main/ui/src/main/java/org/cryptomator/ui/migration/MigrationRunController.java

+ 2 - 2
main/ui/src/main/java/org/cryptomator/ui/migration/MigrationRunController.java

@@ -135,8 +135,8 @@ public class MigrationRunController implements FxController {
 			vault.setState(VaultState.NEEDS_MIGRATION);
 			missingCapability.set(e.getMissingCapability());
 			window.setScene(capabilityErrorScene.get());
-		}).onError(FileNameTooLongException.class, e -> { // including RuntimeExceptions
-			LOG.error("Migration failed for because the storage device does not support long filenames.", e);
+		}).onError(FileNameTooLongException.class, e -> {
+			LOG.error("Migration failed because the underlying file system does not support long filenames.", e);
 			vault.setState(VaultState.NEEDS_MIGRATION);
 			errorComponent.cause(e).window(window).returnToScene(startScene.get()).build().showErrorScene();
 			window.setScene(impossibleScene.get());