Enforce Library singleton

This commit is contained in:
Santiago Lo Coco 2024-02-27 14:33:36 +01:00
parent 6f61650f3d
commit 09bac685fa
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -1,6 +1,6 @@
package edu.uastw;
public abstract class LibraryDecorator extends Library {
public abstract class LibraryDecorator {
protected Library library;
public LibraryDecorator(Library library) {