From ec126de053cd1343e0c5778a56ea58045d0e3170 Mon Sep 17 00:00:00 2001 From: Masfehico Date: Mon, 7 Dec 2020 18:26:18 +0100 Subject: Big update Implementing the function to add songs. Cleaning a bit everywhere as well. --- Album.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Album.java') diff --git a/Album.java b/Album.java index 8c7b809..e8766a3 100644 --- a/Album.java +++ b/Album.java @@ -4,9 +4,9 @@ public class Album { private int id, duration, date; private String title, artist; - private ArrayList songs = new ArrayList(); + private ArrayList songs = new ArrayList(); - public Album(int id, String title, int duration, String artist, int date, ArrayList songs) { + public Album(int id, String title, int duration, String artist, int date, ArrayList songs) { this.id=id; this.title=title; this.duration=duration; -- cgit v1.2.3