From ce18d3b597b690d77a2cc485a9674b5096cdf14d Mon Sep 17 00:00:00 2001 From: PiggyPiglet Date: Fri, 24 Dec 2021 12:26:22 +0800 Subject: [PATCH] update licenses & bump deprecation ver --- .../clip/placeholderapi/PlaceholderAPI.java | 48 +++++++++---------- .../placeholderapi/PlaceholderAPIPlugin.java | 2 +- .../clip/placeholderapi/PlaceholderHook.java | 2 +- .../commands/PlaceholderCommand.java | 2 +- .../commands/PlaceholderCommandRouter.java | 12 +---- .../commands/impl/cloud/CommandECloud.java | 2 +- .../impl/cloud/CommandECloudClear.java | 2 +- .../impl/cloud/CommandECloudDownload.java | 2 +- .../cloud/CommandECloudExpansionInfo.java | 2 +- .../cloud/CommandECloudExpansionList.java | 2 +- .../CommandECloudExpansionPlaceholders.java | 2 +- .../impl/cloud/CommandECloudRefresh.java | 2 +- .../impl/cloud/CommandECloudStatus.java | 2 +- .../impl/cloud/CommandECloudToggle.java | 2 +- .../impl/cloud/CommandECloudUpdate.java | 2 +- .../commands/impl/local/CommandDump.java | 2 +- .../impl/local/CommandExpansionRegister.java | 2 +- .../local/CommandExpansionUnregister.java | 2 +- .../commands/impl/local/CommandHelp.java | 2 +- .../commands/impl/local/CommandInfo.java | 2 +- .../commands/impl/local/CommandList.java | 2 +- .../commands/impl/local/CommandParse.java | 2 +- .../commands/impl/local/CommandReload.java | 2 +- .../commands/impl/local/CommandVersion.java | 2 +- .../configuration/ExpansionSort.java | 2 +- .../configuration/PlaceholderAPIConfig.java | 2 +- .../events/ExpansionRegisterEvent.java | 2 +- .../events/ExpansionUnregisterEvent.java | 2 +- .../events/ExpansionsLoadedEvent.java | 2 +- .../events/PlaceholderHookUnloadEvent.java | 2 +- .../exceptions/NoDefaultCommandException.java | 2 +- .../placeholderapi/expansion/Cacheable.java | 2 +- .../placeholderapi/expansion/Cleanable.java | 2 +- .../expansion/Configurable.java | 2 +- .../placeholderapi/expansion/NMSVersion.java | 2 +- .../expansion/PlaceholderExpansion.java | 8 ++-- .../placeholderapi/expansion/Relational.java | 2 +- .../placeholderapi/expansion/Taskable.java | 2 +- .../placeholderapi/expansion/Version.java | 2 +- .../expansion/VersionSpecific.java | 2 +- .../expansion/cloud/CloudExpansion.java | 2 +- .../manager/CloudExpansionManager.java | 2 +- .../manager/LocalExpansionManager.java | 2 +- .../expansion/manager/MethodSignature.java | 20 ++++++++ .../listeners/ServerLoadEventListener.java | 2 +- .../replacer/CharsReplacer.java | 2 +- .../replacer/RegexReplacer.java | 2 +- .../placeholderapi/replacer/Replacer.java | 2 +- .../updatechecker/UpdateChecker.java | 2 +- .../me/clip/placeholderapi/util/FileUtil.java | 2 +- .../me/clip/placeholderapi/util/Format.java | 2 +- .../me/clip/placeholderapi/util/Futures.java | 2 +- .../java/me/clip/placeholderapi/util/Msg.java | 2 +- .../clip/placeholderapi/util/TimeFormat.java | 2 +- .../me/clip/placeholderapi/util/TimeUtil.java | 2 +- 55 files changed, 101 insertions(+), 89 deletions(-) diff --git a/src/main/java/me/clip/placeholderapi/PlaceholderAPI.java b/src/main/java/me/clip/placeholderapi/PlaceholderAPI.java index 4aff339..bf4fd8c 100644 --- a/src/main/java/me/clip/placeholderapi/PlaceholderAPI.java +++ b/src/main/java/me/clip/placeholderapi/PlaceholderAPI.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. @@ -292,14 +292,14 @@ public final class PlaceholderAPI { // === Deprecated API === @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static boolean registerExpansion(PlaceholderExpansion expansion) { return expansion.register(); } @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static boolean unregisterExpansion(PlaceholderExpansion expansion) { return expansion.unregister(); @@ -313,7 +313,7 @@ public final class PlaceholderAPI { * @return Map of registered placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static Map getPlaceholders() { return PlaceholderAPIPlugin.getInstance().getLocalExpansionManager() .getExpansions().stream() @@ -329,7 +329,7 @@ public final class PlaceholderAPI { * @return always false */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static boolean registerPlaceholderHook(Plugin plugin, PlaceholderHook placeholderHook) { PlaceholderAPIPlugin.getInstance().getLogger().warning(plugin.getName() + " is attempting to register placeholders via a PlaceholderHook class which is no longer supported!" @@ -347,7 +347,7 @@ public final class PlaceholderAPI { * @return always false */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static boolean registerPlaceholderHook(String identifier, PlaceholderHook placeholderHook) { PlaceholderAPIPlugin.getInstance().getLogger().warning(identifier @@ -363,7 +363,7 @@ public final class PlaceholderAPI { * @return always false */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static boolean unregisterPlaceholderHook(Plugin plugin) { PlaceholderAPIPlugin.getInstance().getLogger().warning(plugin.getName() + " is attempting to unregister placeholders via the PlaceholderAPI class which is no longer supported!" @@ -380,7 +380,7 @@ public final class PlaceholderAPI { * @return always false */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static boolean unregisterPlaceholderHook(String identifier) { PlaceholderAPIPlugin.getInstance().getLogger().warning(identifier + " is attempting to unregister placeholders through the PlaceholderAPI class which is no longer supported!"); @@ -393,7 +393,7 @@ public final class PlaceholderAPI { * @return Set of registered identifiers */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static Set getRegisteredPlaceholderPlugins() { return getRegisteredIdentifiers(); } @@ -404,7 +404,7 @@ public final class PlaceholderAPI { * @return always null */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static Set getExternalPlaceholderPlugins() { return null; } @@ -419,7 +419,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static String setPlaceholders(OfflinePlayer player, String text, Pattern pattern, boolean colorize) { return setPlaceholders(player, text); @@ -435,7 +435,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static List setPlaceholders(OfflinePlayer player, List text, Pattern pattern, boolean colorize) { return setPlaceholders(player, text); @@ -450,7 +450,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static List setPlaceholders(OfflinePlayer player, List text, boolean colorize) { return setPlaceholders(player, text); @@ -465,7 +465,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static List setPlaceholders(OfflinePlayer player, List text, Pattern pattern) { return setPlaceholders(player, text); @@ -479,7 +479,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static String setPlaceholders(Player player, String text, boolean colorize) { return setPlaceholders(player, text); } @@ -493,7 +493,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static List setPlaceholders(Player player, List text, boolean colorize) { return setPlaceholders(player, text); } @@ -507,7 +507,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static String setPlaceholders(OfflinePlayer player, String text, boolean colorize) { return setPlaceholders(player, text); } @@ -521,7 +521,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static String setPlaceholders(OfflinePlayer player, String text, Pattern pattern) { return setPlaceholders(player, text); } @@ -535,7 +535,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static List setBracketPlaceholders(OfflinePlayer player, List text, boolean colorize) { return setBracketPlaceholders(player, text); @@ -550,7 +550,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static String setBracketPlaceholders(OfflinePlayer player, String text, boolean colorize) { return setBracketPlaceholders(player, text); } @@ -564,7 +564,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static String setBracketPlaceholders(Player player, String text, boolean colorize) { return setBracketPlaceholders(player, text); } @@ -578,7 +578,7 @@ public final class PlaceholderAPI { * @return String with the parsed placeholders */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static List setBracketPlaceholders(Player player, List text, boolean colorize) { return setBracketPlaceholders(player, text); @@ -596,7 +596,7 @@ public final class PlaceholderAPI { * @deprecated Use {@link #setPlaceholders(OfflinePlayer, String)} instead. */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static String setRelationalPlaceholders(Player one, Player two, String text, boolean colorize) { return setRelationalPlaceholders(one, two, text); @@ -614,7 +614,7 @@ public final class PlaceholderAPI { * @deprecated Use {@link #setRelationalPlaceholders(Player, Player, List)} instead. */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public static List setRelationalPlaceholders(Player one, Player two, List text, boolean colorize) { return setRelationalPlaceholders(one, two, text); diff --git a/src/main/java/me/clip/placeholderapi/PlaceholderAPIPlugin.java b/src/main/java/me/clip/placeholderapi/PlaceholderAPIPlugin.java index f0e590e..78a50be 100644 --- a/src/main/java/me/clip/placeholderapi/PlaceholderAPIPlugin.java +++ b/src/main/java/me/clip/placeholderapi/PlaceholderAPIPlugin.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/PlaceholderHook.java b/src/main/java/me/clip/placeholderapi/PlaceholderHook.java index 55b2930..622260f 100644 --- a/src/main/java/me/clip/placeholderapi/PlaceholderHook.java +++ b/src/main/java/me/clip/placeholderapi/PlaceholderHook.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/PlaceholderCommand.java b/src/main/java/me/clip/placeholderapi/commands/PlaceholderCommand.java index 2d6b78a..db5f496 100644 --- a/src/main/java/me/clip/placeholderapi/commands/PlaceholderCommand.java +++ b/src/main/java/me/clip/placeholderapi/commands/PlaceholderCommand.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/PlaceholderCommandRouter.java b/src/main/java/me/clip/placeholderapi/commands/PlaceholderCommandRouter.java index 2a81e85..82a9f86 100644 --- a/src/main/java/me/clip/placeholderapi/commands/PlaceholderCommandRouter.java +++ b/src/main/java/me/clip/placeholderapi/commands/PlaceholderCommandRouter.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. @@ -31,15 +31,7 @@ import java.util.Map; import java.util.stream.Stream; import me.clip.placeholderapi.PlaceholderAPIPlugin; import me.clip.placeholderapi.commands.impl.cloud.CommandECloud; -import me.clip.placeholderapi.commands.impl.local.CommandDump; -import me.clip.placeholderapi.commands.impl.local.CommandExpansionRegister; -import me.clip.placeholderapi.commands.impl.local.CommandExpansionUnregister; -import me.clip.placeholderapi.commands.impl.local.CommandHelp; -import me.clip.placeholderapi.commands.impl.local.CommandInfo; -import me.clip.placeholderapi.commands.impl.local.CommandList; -import me.clip.placeholderapi.commands.impl.local.CommandParse; -import me.clip.placeholderapi.commands.impl.local.CommandReload; -import me.clip.placeholderapi.commands.impl.local.CommandVersion; +import me.clip.placeholderapi.commands.impl.local.*; import me.clip.placeholderapi.util.Msg; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloud.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloud.java index 0cfbc16..22bc053 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloud.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloud.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudClear.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudClear.java index 3296657..6d6121c 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudClear.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudClear.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudDownload.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudDownload.java index ee9e6ca..5717447 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudDownload.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudDownload.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionInfo.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionInfo.java index 267505e..7e0c5b2 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionInfo.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionInfo.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionList.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionList.java index cb4d38c..3cda0e2 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionList.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionList.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionPlaceholders.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionPlaceholders.java index 46eda28..e1def67 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionPlaceholders.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudExpansionPlaceholders.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudRefresh.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudRefresh.java index 77f023e..fb11086 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudRefresh.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudRefresh.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudStatus.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudStatus.java index f1e6333..a264703 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudStatus.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudStatus.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudToggle.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudToggle.java index 57539d5..85f1fff 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudToggle.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudToggle.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudUpdate.java b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudUpdate.java index 0cb4a10..b2d6405 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudUpdate.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/cloud/CommandECloudUpdate.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandDump.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandDump.java index 7a1ed32..c647e71 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandDump.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandDump.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandExpansionRegister.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandExpansionRegister.java index 9f0bcbd..c6085b6 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandExpansionRegister.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandExpansionRegister.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandExpansionUnregister.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandExpansionUnregister.java index 3d03283..bf0861b 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandExpansionUnregister.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandExpansionUnregister.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandHelp.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandHelp.java index aeb53e7..f1a24bd 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandHelp.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandHelp.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandInfo.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandInfo.java index d4dc03a..3d98b61 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandInfo.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandInfo.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandList.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandList.java index 5a5b28a..6d8506b 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandList.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandList.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandParse.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandParse.java index 60c4ff8..b077d57 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandParse.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandParse.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandReload.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandReload.java index 77ac57a..ca48275 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandReload.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandReload.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandVersion.java b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandVersion.java index 4ad73dd..0c7a285 100644 --- a/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandVersion.java +++ b/src/main/java/me/clip/placeholderapi/commands/impl/local/CommandVersion.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/configuration/ExpansionSort.java b/src/main/java/me/clip/placeholderapi/configuration/ExpansionSort.java index 79b1f2a..ed4211d 100644 --- a/src/main/java/me/clip/placeholderapi/configuration/ExpansionSort.java +++ b/src/main/java/me/clip/placeholderapi/configuration/ExpansionSort.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/configuration/PlaceholderAPIConfig.java b/src/main/java/me/clip/placeholderapi/configuration/PlaceholderAPIConfig.java index 9d9a057..e10733e 100644 --- a/src/main/java/me/clip/placeholderapi/configuration/PlaceholderAPIConfig.java +++ b/src/main/java/me/clip/placeholderapi/configuration/PlaceholderAPIConfig.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/events/ExpansionRegisterEvent.java b/src/main/java/me/clip/placeholderapi/events/ExpansionRegisterEvent.java index e54e3e9..f50ea75 100644 --- a/src/main/java/me/clip/placeholderapi/events/ExpansionRegisterEvent.java +++ b/src/main/java/me/clip/placeholderapi/events/ExpansionRegisterEvent.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/events/ExpansionUnregisterEvent.java b/src/main/java/me/clip/placeholderapi/events/ExpansionUnregisterEvent.java index 6156003..0e630d9 100644 --- a/src/main/java/me/clip/placeholderapi/events/ExpansionUnregisterEvent.java +++ b/src/main/java/me/clip/placeholderapi/events/ExpansionUnregisterEvent.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/events/ExpansionsLoadedEvent.java b/src/main/java/me/clip/placeholderapi/events/ExpansionsLoadedEvent.java index f9ca024..56e7ae8 100644 --- a/src/main/java/me/clip/placeholderapi/events/ExpansionsLoadedEvent.java +++ b/src/main/java/me/clip/placeholderapi/events/ExpansionsLoadedEvent.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/events/PlaceholderHookUnloadEvent.java b/src/main/java/me/clip/placeholderapi/events/PlaceholderHookUnloadEvent.java index 24a8a0b..48d2edf 100644 --- a/src/main/java/me/clip/placeholderapi/events/PlaceholderHookUnloadEvent.java +++ b/src/main/java/me/clip/placeholderapi/events/PlaceholderHookUnloadEvent.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/exceptions/NoDefaultCommandException.java b/src/main/java/me/clip/placeholderapi/exceptions/NoDefaultCommandException.java index d4ceebd..203c48e 100644 --- a/src/main/java/me/clip/placeholderapi/exceptions/NoDefaultCommandException.java +++ b/src/main/java/me/clip/placeholderapi/exceptions/NoDefaultCommandException.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/Cacheable.java b/src/main/java/me/clip/placeholderapi/expansion/Cacheable.java index 20b2fb8..0ebc2a8 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/Cacheable.java +++ b/src/main/java/me/clip/placeholderapi/expansion/Cacheable.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/Cleanable.java b/src/main/java/me/clip/placeholderapi/expansion/Cleanable.java index 9b369eb..48967f5 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/Cleanable.java +++ b/src/main/java/me/clip/placeholderapi/expansion/Cleanable.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/Configurable.java b/src/main/java/me/clip/placeholderapi/expansion/Configurable.java index 1e07fb4..ad38418 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/Configurable.java +++ b/src/main/java/me/clip/placeholderapi/expansion/Configurable.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/NMSVersion.java b/src/main/java/me/clip/placeholderapi/expansion/NMSVersion.java index 9aadd43..0cb9cd4 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/NMSVersion.java +++ b/src/main/java/me/clip/placeholderapi/expansion/NMSVersion.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/PlaceholderExpansion.java b/src/main/java/me/clip/placeholderapi/expansion/PlaceholderExpansion.java index a7ff90b..5cd3029 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/PlaceholderExpansion.java +++ b/src/main/java/me/clip/placeholderapi/expansion/PlaceholderExpansion.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. @@ -406,7 +406,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook { * @return The plugin name. */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public String getPlugin() { return null; } @@ -417,7 +417,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook { * @return The description of the expansion. */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public String getDescription() { return null; } @@ -428,7 +428,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook { * @return The link for the expansion. */ @Deprecated - @ApiStatus.ScheduledForRemoval(inVersion = "2.11.0") + @ApiStatus.ScheduledForRemoval(inVersion = "2.13.0") public String getLink() { return null; } diff --git a/src/main/java/me/clip/placeholderapi/expansion/Relational.java b/src/main/java/me/clip/placeholderapi/expansion/Relational.java index ba1872c..9d39785 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/Relational.java +++ b/src/main/java/me/clip/placeholderapi/expansion/Relational.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/Taskable.java b/src/main/java/me/clip/placeholderapi/expansion/Taskable.java index f71aef8..a26b661 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/Taskable.java +++ b/src/main/java/me/clip/placeholderapi/expansion/Taskable.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/Version.java b/src/main/java/me/clip/placeholderapi/expansion/Version.java index 0ba9029..4cbb1ab 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/Version.java +++ b/src/main/java/me/clip/placeholderapi/expansion/Version.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/VersionSpecific.java b/src/main/java/me/clip/placeholderapi/expansion/VersionSpecific.java index 7c91500..97ddf42 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/VersionSpecific.java +++ b/src/main/java/me/clip/placeholderapi/expansion/VersionSpecific.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/cloud/CloudExpansion.java b/src/main/java/me/clip/placeholderapi/expansion/cloud/CloudExpansion.java index b7db765..cc644d7 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/cloud/CloudExpansion.java +++ b/src/main/java/me/clip/placeholderapi/expansion/cloud/CloudExpansion.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/manager/CloudExpansionManager.java b/src/main/java/me/clip/placeholderapi/expansion/manager/CloudExpansionManager.java index c79ee11..4ad0406 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/manager/CloudExpansionManager.java +++ b/src/main/java/me/clip/placeholderapi/expansion/manager/CloudExpansionManager.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/manager/LocalExpansionManager.java b/src/main/java/me/clip/placeholderapi/expansion/manager/LocalExpansionManager.java index abded95..ff9de96 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/manager/LocalExpansionManager.java +++ b/src/main/java/me/clip/placeholderapi/expansion/manager/LocalExpansionManager.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/expansion/manager/MethodSignature.java b/src/main/java/me/clip/placeholderapi/expansion/manager/MethodSignature.java index 8a7d735..87519b1 100644 --- a/src/main/java/me/clip/placeholderapi/expansion/manager/MethodSignature.java +++ b/src/main/java/me/clip/placeholderapi/expansion/manager/MethodSignature.java @@ -1,3 +1,23 @@ +/* + * This file is part of PlaceholderAPI + * + * PlaceholderAPI + * Copyright (c) 2015 - 2021 PlaceholderAPI Team + * + * PlaceholderAPI free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * PlaceholderAPI is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + package me.clip.placeholderapi.expansion.manager; import java.util.Arrays; diff --git a/src/main/java/me/clip/placeholderapi/listeners/ServerLoadEventListener.java b/src/main/java/me/clip/placeholderapi/listeners/ServerLoadEventListener.java index 8967f3a..ca8703d 100644 --- a/src/main/java/me/clip/placeholderapi/listeners/ServerLoadEventListener.java +++ b/src/main/java/me/clip/placeholderapi/listeners/ServerLoadEventListener.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/replacer/CharsReplacer.java b/src/main/java/me/clip/placeholderapi/replacer/CharsReplacer.java index 5160600..3688d32 100644 --- a/src/main/java/me/clip/placeholderapi/replacer/CharsReplacer.java +++ b/src/main/java/me/clip/placeholderapi/replacer/CharsReplacer.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/replacer/RegexReplacer.java b/src/main/java/me/clip/placeholderapi/replacer/RegexReplacer.java index 8eccfbe..b9e1261 100644 --- a/src/main/java/me/clip/placeholderapi/replacer/RegexReplacer.java +++ b/src/main/java/me/clip/placeholderapi/replacer/RegexReplacer.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/replacer/Replacer.java b/src/main/java/me/clip/placeholderapi/replacer/Replacer.java index 339088f..b96140a 100644 --- a/src/main/java/me/clip/placeholderapi/replacer/Replacer.java +++ b/src/main/java/me/clip/placeholderapi/replacer/Replacer.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/updatechecker/UpdateChecker.java b/src/main/java/me/clip/placeholderapi/updatechecker/UpdateChecker.java index 2163be2..8001d61 100644 --- a/src/main/java/me/clip/placeholderapi/updatechecker/UpdateChecker.java +++ b/src/main/java/me/clip/placeholderapi/updatechecker/UpdateChecker.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/util/FileUtil.java b/src/main/java/me/clip/placeholderapi/util/FileUtil.java index 825ff54..83c4a1f 100644 --- a/src/main/java/me/clip/placeholderapi/util/FileUtil.java +++ b/src/main/java/me/clip/placeholderapi/util/FileUtil.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/util/Format.java b/src/main/java/me/clip/placeholderapi/util/Format.java index 558dd92..0a6bfcf 100644 --- a/src/main/java/me/clip/placeholderapi/util/Format.java +++ b/src/main/java/me/clip/placeholderapi/util/Format.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/util/Futures.java b/src/main/java/me/clip/placeholderapi/util/Futures.java index 8f07e32..c29892f 100644 --- a/src/main/java/me/clip/placeholderapi/util/Futures.java +++ b/src/main/java/me/clip/placeholderapi/util/Futures.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/util/Msg.java b/src/main/java/me/clip/placeholderapi/util/Msg.java index 31aa49f..4e67f00 100644 --- a/src/main/java/me/clip/placeholderapi/util/Msg.java +++ b/src/main/java/me/clip/placeholderapi/util/Msg.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/util/TimeFormat.java b/src/main/java/me/clip/placeholderapi/util/TimeFormat.java index 9558daa..29bd2d7 100644 --- a/src/main/java/me/clip/placeholderapi/util/TimeFormat.java +++ b/src/main/java/me/clip/placeholderapi/util/TimeFormat.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. diff --git a/src/main/java/me/clip/placeholderapi/util/TimeUtil.java b/src/main/java/me/clip/placeholderapi/util/TimeUtil.java index 85e07df..17c261f 100644 --- a/src/main/java/me/clip/placeholderapi/util/TimeUtil.java +++ b/src/main/java/me/clip/placeholderapi/util/TimeUtil.java @@ -4,7 +4,7 @@ * PlaceholderAPI * Copyright (c) 2015 - 2021 PlaceholderAPI Team * - * PlaceholderAPI is free software: you can redistribute it and/or modify + * PlaceholderAPI free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version.