Update Library() access level modifier

This commit is contained in:
Santiago Lo Coco 2024-02-27 11:55:53 +01:00
parent c1d759b710
commit 6f61650f3d
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ public class Library implements Iterable<LibraryItem> {
private final List<LibraryItem> libraryItems; private final List<LibraryItem> libraryItems;
private int booksCapacity = 3; private int booksCapacity = 3;
public Library() { Library() {
this.libraryItems = new ArrayList<>(); this.libraryItems = new ArrayList<>();
} }