Enforce Library singleton
This commit is contained in:
parent
6f61650f3d
commit
09bac685fa
|
@ -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<>();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package edu.uastw;
|
||||
|
||||
public abstract class LibraryDecorator extends Library {
|
||||
public abstract class LibraryDecorator {
|
||||
protected Library library;
|
||||
|
||||
public LibraryDecorator(Library library) {
|
||||
|
|
Loading…
Reference in New Issue