Reorder modifiers

This commit is contained in:
GeorgH93 2023-12-11 17:53:33 +01:00
parent 8c2e25a75e
commit 0bacf05204
No known key found for this signature in database
GPG Key ID: D1630D37F9E4B3C8
2 changed files with 4 additions and 4 deletions

View File

@ -35,12 +35,12 @@ public class InventoryClearEvent extends Event implements Cancellable
/** /**
* The player whose inventory should be cleared. * The player whose inventory should be cleared.
*/ */
@Getter final private Player player; @Getter private final Player player;
/** /**
* The command sender who has requested the inventory to be cleared. * The command sender who has requested the inventory to be cleared.
*/ */
@Getter final private CommandSender sender; @Getter private final CommandSender sender;
// Bukkit handler stuff // Bukkit handler stuff
private static final HandlerList handlers = new HandlerList(); private static final HandlerList handlers = new HandlerList();

View File

@ -31,12 +31,12 @@ public class InventoryClearedEvent extends Event
/** /**
* The player whose inventory has been cleared. * The player whose inventory has been cleared.
*/ */
@Getter final private Player player; @Getter private final Player player;
/** /**
* The command sender who has requested the inventory to be cleared. * The command sender who has requested the inventory to be cleared.
*/ */
@Getter final private CommandSender sender; @Getter private final CommandSender sender;
// Bukkit handler stuff // Bukkit handler stuff
private static final HandlerList handlers = new HandlerList(); private static final HandlerList handlers = new HandlerList();