Removed Comments

This commit is contained in:
Carrima Hewitt
2022-09-20 08:37:38 -04:00
parent 4c96c285bf
commit 97a61ef717

View File

@@ -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.
* */
}