Skip to content
Snippets Groups Projects
Commit cc7aba18 authored by Quentin Leblanc's avatar Quentin Leblanc
Browse files

modified to string to match previous changes on type

parent 20027da0
No related branches found
No related tags found
3 merge requests!21*poof* final version,!16Gui transport,!13OTS integration
...@@ -36,7 +36,7 @@ public class Coordinates { ...@@ -36,7 +36,7 @@ public class Coordinates {
@Override @Override
public String toString(){ public String toString(){
StringBuilder string = new StringBuilder(); StringBuilder string = new StringBuilder();
return string.append(type.toString()).append("au point (").append(x).append(", ").append(y).append(")").toString(); return string.append("Coordonnées du type ").append(type).append(" au point (").append(x).append(", ").append(y).append(")").toString();
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment