aboutsummaryrefslogtreecommitdiffstats
path: root/Album.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Album.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/Album.java b/Album.java
index 7b30ca1..82f2254 100644
--- a/Album.java
+++ b/Album.java
@@ -185,7 +185,7 @@ public class Album implements Serializable {
* @author Aimeric ADJUTOR
* */
public String toString() {
- return "Id : "+getId()+"\nTitle : "+getTitle()+"\nDuration : "+getDuration()+"\nArtist : "+getArtist()+"\nDate of release : "+getDate();
-}
+ return "Id : "+getId()+"\nTitle : "+getTitle()+"\nDuration : "+getDuration()+"\nArtist : "+getArtist()+"\nDate of release : "+getDate()+"\n";
+ }
}