Skip to content

Commit

Permalink
some more changes to InMemoryUser so it works for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
CC-3636 committed Nov 22, 2022
1 parent b4f5e78 commit 6c8798e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/screens/InMemoryUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ public boolean existsByName(String identifier) {

@Override
public String passOf(String name) {
return null;
return users.get(name).getPass();
}

@Override
public Map<String, UserRegSaveRequest> getAccounts() {
return null;
return users;
}

/**
Expand Down

0 comments on commit 6c8798e

Please sign in to comment.