aboutsummaryrefslogtreecommitdiffstats
path: root/Song.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Song.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Song.java b/Song.java
index a476d2c..edcdfc4 100644
--- a/Song.java
+++ b/Song.java
@@ -89,6 +89,6 @@ public class Song extends MusicalElement{
* @author Aimeric ADJUTOR
* */
public String toString() {
- return "Id : "+getId()+"\nTitle : "+getTitle()+"\nDuration : "+getDuration()+"\nContent : "+getContent()+"\nArtist : "+getArtist()+"\nGenre : "+getGenre();
+ return "Id : "+getId()+"\nTitle : "+getTitle()+"\nDuration : "+getDuration()+"\nContent : "+getContent()+"\nArtist : "+getArtist()+"\nGenre : "+getGenre()+"\n";
}
}