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
Branches
No related tags found
3 merge requests!21*poof* final version,!16Gui transport,!13OTS integration
......@@ -36,7 +36,7 @@ public class Coordinates {
@Override
public String toString(){
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