From 6f61650f3d7f74020d5b4bd0f2622d1cd573fba6 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 27 Feb 2024 11:55:53 +0100 Subject: [PATCH] Update Library() access level modifier --- src/main/java/edu/uastw/Library.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/edu/uastw/Library.java b/src/main/java/edu/uastw/Library.java index bea5277..35743ce 100644 --- a/src/main/java/edu/uastw/Library.java +++ b/src/main/java/edu/uastw/Library.java @@ -9,7 +9,7 @@ public class Library implements Iterable { private final List libraryItems; private int booksCapacity = 3; - public Library() { + Library() { this.libraryItems = new ArrayList<>(); }