Skip to content

Commit

Permalink
lint: fix
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony D. Mays <anthony@morganlatimer.com>
  • Loading branch information
anthonydmays committed Apr 5, 2024
1 parent b3c82b3 commit e08c2b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ public Set<Librarian> getLibrarians() {

/**
* Returns all registered library patrons.
*
*
* @return A unique set of all Library patrons.
*/
public Set<LibraryGuest> getPatrons() {
return this.guestsById.values().stream().collect(Collectors.toSet());
return this.guestsById.values().stream().collect(Collectors.toSet());
}

/**
Expand Down

0 comments on commit e08c2b6

Please sign in to comment.