aboutsummaryrefslogtreecommitdiff
path: root/Album.java
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2020-12-29 00:28:01 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2020-12-29 00:28:01 +0100
commitea75134160618549a68b37c05d491e319cce99c7 (patch)
tree2a13d5f4efef34400d99974a26f3db83d772a105 /Album.java
parentd9e2c4bb66e73cc83ee1e21186d851866c46dacd (diff)
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.
Diffstat (limited to 'Album.java')
-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";
+ }
}