1
0
mirror of https://github.com/garbagemule/MobArena.git synced 2025-03-02 11:21:17 +01:00

StringBuffer => StringBuilder, thanks IntelliJ ^_^

This commit is contained in:
garbagemule 2013-08-13 14:59:11 +02:00
parent c500c4f80e
commit a3cef8339e

View File

@ -441,7 +441,7 @@ public class Config
* @return a String of the form "x,y,z,yaw,pitch"
*/
public static String locationToString(Location loc) {
StringBuffer result = new StringBuffer();
StringBuilder result = new StringBuilder();
result.append(twoPlaces(loc.getX())).append(",");
result.append(twoPlaces(loc.getY())).append(",");