Skip to content

Commit

Permalink
remove unnecessary print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrotonic1 committed Oct 10, 2024
1 parent f9f64b4 commit 8f24970
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public static String readNote(String filename) {

public static String[] readFilenames() {
File Path = new File("simplenotes/notes/");
System.out.println("Note list:" + Arrays.toString(Path.list()));
return Path.list();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ protected void build(FlowLayout rootComponent) {
client.setScreen(new EditNote());
}).margins(Insets.of(5)).sizing(Sizing.content(), Sizing.fixed(20));
ContainerLayout.child(NoteButton);
System.out.println(NoteDataHandler.readFilenames()[i]);
}

rootComponent.child(ContainerLayout);
Expand Down

0 comments on commit 8f24970

Please sign in to comment.