From ea75134160618549a68b37c05d491e319cce99c7 Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Tue, 29 Dec 2020 00:28:01 +0100 Subject: toString global update The display of a print of each class was too ugly, just added a \n to make it more easier to teel the difference between each element. --- Playlist.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Playlist.java') diff --git a/Playlist.java b/Playlist.java index 94cfdd6..b4251d3 100644 --- a/Playlist.java +++ b/Playlist.java @@ -116,6 +116,6 @@ public class Playlist implements Serializable { * @author Aimeric ADJUTOR * */ public String toString() { - return "Id : "+getId()+"\nName : "+getName(); + return "Id : "+getId()+"\nName : "+getName()+"\n"; } } -- cgit v1.2.3