瀏覽代碼

Removed Comments

Carrima Hewitt 2 年之前
父節點
當前提交
97a61ef717
共有 1 個文件被更改,包括 0 次插入8 次删除
  1. 0 8
      src/main/java/org/cryptomator/ui/addvaultwizard/CreateNewVaultNameController.java

+ 0 - 8
src/main/java/org/cryptomator/ui/addvaultwizard/CreateNewVaultNameController.java

@@ -76,14 +76,6 @@ public class CreateNewVaultNameController implements FxController {
 
 	public boolean isValidVaultName() {
 		return vaultName.get() != null && VALID_NAME_PATTERN.matcher(vaultName.get().trim()).matches();
-		//return validVaultName.get();
 	}
-	/*
-	* Issue with next button:
-	* In the "addvault_new_location.fxml" class's method "buttonMinWidth," the next button was referring to an inValidVaultPath function which does not exist...
-	* I changed it to "!controller.validVaultName" and that worked
-	*
-	* Other "issue" I noticed is that closing the application window does not stop the program. Unsure if this is a major issue.
-	* */
 
 }