Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
checkstyle is a bitch
Browse files Browse the repository at this point in the history
  • Loading branch information
Majekdor committed Jul 7, 2021
1 parent 1c1ff1e commit fc3e612
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/main/java/dev/majek/nicks/event/PlayerJoin.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
*/
public class PlayerJoin implements Listener {

/**
* Fires when the player joins.
*
* @param event The event.
*/
@EventHandler(priority = EventPriority.HIGHEST)
public void onPlayerJoin(PlayerJoinEvent event) {
if (Nicks.core().hasNick(event.getPlayer().getUniqueId())) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/dev/majek/nicks/util/TabCompleterBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import org.bukkit.entity.Player;

/**
* Allows for some static utility methods to be available to tab completer
* Allows for some static utility methods to be available to tab completer.
*/
public abstract class TabCompleterBase implements TabCompleter {
/**
Expand Down

0 comments on commit fc3e612

Please sign in to comment.