Skip to content
Snippets Groups Projects
Commit bc2ddf5f authored by George Adrian Stoica's avatar George Adrian Stoica
Browse files

chore: removes commented code

parent 24a71eba
No related branches found
No related tags found
No related merge requests found
......@@ -80,11 +80,6 @@ public class TodoModelController implements TodoSettingsListener {
private void initializeTodoListsView() {
todoListsView.setEditable(true);
todoListsView.valueProperty().addListener((prop, oldName, newName) -> {
// System.out.println("valueProperty: -> "
// + todoListsView.getSelectionModel().getSelectedItem() + " @ "
// + todoListsView.getSelectionModel().getSelectedIndex() + " -> "
// + (oldName != null ? ("\"" + oldName + "\"") : null) + " -> "
// + (newName != null ? ("\"" + newName + "\"") : null));
if (newName != null && (! todoModelAccess.isValidTodoListName(newName))) {
// allow user to edit name
} else if (oldName != null && newName != null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment