Skip to content

Commit

Permalink
fix 名無しさんが文字化けするの直した
Browse files Browse the repository at this point in the history
  • Loading branch information
Khromium committed Dec 14, 2017
1 parent 9a0aecc commit a15014e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample/src/main/java/rps/Engine.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public Pair<RPS, RPS> sendRPS() {

@Override
public String setTeamName() {
String name = "名無し"+new Random(1000).toString();
String name = "名無し" + new Random().nextInt(1000);
return name;
}
}

0 comments on commit a15014e

Please sign in to comment.