소스 검색

Modif toString

Arthur Brandao 5 년 전
부모
커밋
82f462d368
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 + "]";
 	}
 
 }