return false;
}
private void askAboutPassword() {
assert manualConnectionStringDefiner.isSelected() && manualConnectionStringDefiner.isPasswordDefined();
Answer answer = Ask.yesOrNo(
getUi(),
"The connection string contains a password. It is safer to define the password in the " +
"password field.\n\nDo you want to move the password from the connection string to the " +
"password field?",
"Password Safety",
Option.YES,
Type.WARNING);
if (answer.isYes()) {
preference.putBoolean(preferenceKey, true);
movePasswordToPasswordField();
} else {
preference.putBoolean(preferenceKey, false);
}