Removed useless code and erroneous documentation in GameModePlaceholderManager

This commit is contained in:
Florian CUNY 2019-04-07 09:44:58 +02:00
parent 5a5e0dafc0
commit 0bcbdf245a

View File

@ -21,7 +21,6 @@ public class GameModePlaceholderManager {
private BentoBox plugin; private BentoBox plugin;
public GameModePlaceholderManager(BentoBox plugin) { public GameModePlaceholderManager(BentoBox plugin) {
super();
this.plugin = plugin; this.plugin = plugin;
} }
@ -37,7 +36,6 @@ public class GameModePlaceholderManager {
} }
/** /**
* Registers default placeholders for all GameModes. Will not overwrite any that the gamemode addon itself implements.
* @author tastybento * @author tastybento
* @since 1.4.0 * @since 1.4.0
*/ */
@ -45,7 +43,6 @@ class DefaultPlaceholder implements PlaceholderReplacer {
private final GameModeAddon addon; private final GameModeAddon addon;
private final GameModePlaceholders type; private final GameModePlaceholders type;
public DefaultPlaceholder(GameModeAddon addon, GameModePlaceholders type) { public DefaultPlaceholder(GameModeAddon addon, GameModePlaceholders type) {
super();
this.addon = addon; this.addon = addon;
this.type = type; this.type = type;
} }