We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c82b3 commit e08c2b6Copy full SHA for e08c2b6
lesson_16/api/api_app/src/main/java/com/codedifferently/lesson16/library/Library.java
@@ -138,11 +138,11 @@ public Set<Librarian> getLibrarians() {
138
139
/**
140
* Returns all registered library patrons.
141
- *
+ *
142
* @return A unique set of all Library patrons.
143
*/
144
public Set<LibraryGuest> getPatrons() {
145
- return this.guestsById.values().stream().collect(Collectors.toSet());
+ return this.guestsById.values().stream().collect(Collectors.toSet());
146
}
147
148
0 commit comments