Fix minor checkstyle issues

- Add JavaDoc where checkstyle expects it
- Fix line too long issues
- ...
This commit is contained in:
ljacqu
2017-05-07 11:59:01 +02:00
parent 1a48348824
commit 1f8307c8f6
43 changed files with 605 additions and 134 deletions
@@ -44,7 +44,7 @@ public class PlayerUtilsTest {
given(player.getUniqueId()).willReturn(uuid);
// when
String result = PlayerUtils.getUUIDorName(player);
String result = PlayerUtils.getUuidOrName(player);
// then
assertThat(result, equalTo(uuid.toString()));
@@ -59,7 +59,7 @@ public class PlayerUtilsTest {
given(player.getName()).willReturn(name);
// when
String result = PlayerUtils.getUUIDorName(player);
String result = PlayerUtils.getUuidOrName(player);
// then
assertThat(result, equalTo(name));