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:
parent
c500c4f80e
commit
a3cef8339e
@ -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(",");
|
||||
|
Loading…
Reference in New Issue
Block a user