Explorar el Código

Modif toString

Arthur Brandao hace 5 años
padre
commit
82f462d368
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 + "]";
 	}
 
 }