Skip to content

Commit e08c2b6

Browse files
committed
lint: fix
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent b3c82b3 commit e08c2b6

File tree

1 file changed

+2
-2
lines changed
  • lesson_16/api/api_app/src/main/java/com/codedifferently/lesson16/library

1 file changed

+2
-2
lines changed

lesson_16/api/api_app/src/main/java/com/codedifferently/lesson16/library/Library.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@ public Set<Librarian> getLibrarians() {
138138

139139
/**
140140
* Returns all registered library patrons.
141-
*
141+
*
142142
* @return A unique set of all Library patrons.
143143
*/
144144
public Set<LibraryGuest> getPatrons() {
145-
return this.guestsById.values().stream().collect(Collectors.toSet());
145+
return this.guestsById.values().stream().collect(Collectors.toSet());
146146
}
147147

148148
/**

0 commit comments

Comments
 (0)