Browse Source

Modif toString

Arthur Brandao 5 years ago
parent
commit
82f462d368
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entity/Ville.java

+ 1 - 1
src/entity/Ville.java

@@ -23,7 +23,7 @@ public class Ville implements Persistable {
 	
 	@Override
 	public String toString() {
-		return libelle + " (" + cp + ")";
+		return libelle + " [" + cp + "]";
 	}
 
 }