Skip to content

Commit

Permalink
Remove System.out.println from the LoginApp class
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Dec 15, 2023
1 parent 72f85a7 commit 6ed6089
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ public ObservableMap<String, String> getSession() {
public final User getUser() {
final var userJsonString = getSession().get("user");
if (userJsonString != null) {
System.out.println("userJsonString = " + userJsonString);
final JSONObject userJson = new JSONObject(userJsonString);
return new User(userJson);
} else {
Expand Down

0 comments on commit 6ed6089

Please sign in to comment.