mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-11-17 12:36:53 +01:00
Move check to before expansions.remove and remove redundant check in unregisterAll
This commit is contained in:
parent
9689eec3ab
commit
0ba5e5dd89
@ -324,23 +324,19 @@ public final class LocalExpansionManager implements Listener {
|
||||
|
||||
@ApiStatus.Internal
|
||||
public boolean unregister(@NotNull final PlaceholderExpansion expansion) {
|
||||
if (expansions.remove(expansion.getIdentifier().toLowerCase(Locale.ROOT)) == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Don't unregister expansions that are marked internal or set to be persistent.
|
||||
if (expansion.getExpansionType() == Type.INTERNAL || expansion.persist()) {
|
||||
// Print warning if an external expansion is set to be persistent.
|
||||
if (expansion.getExpansionType() == Type.EXTERNAL && expansion.persist()) {
|
||||
Msg.warn("Nag author(s) %s about their expansion %s being marked as \"external\" "
|
||||
+ "but having persist() set to true!", expansion.getAuthor(), expansion.getIdentifier());
|
||||
Msg.warn("External Expansions should not be set to be persistent! PlaceholderAPI "
|
||||
+ "will respect this setting and skip the unregister of this Expansion...");
|
||||
Msg.warn("Nag Author(s) %s about their external expansion %s having persist set to true",
|
||||
expansion.getAuthor(), expansion.getIdentifier());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
if (expansions.remove(expansion.getIdentifier().toLowerCase(Locale.ROOT)) == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Bukkit.getPluginManager().callEvent(new ExpansionUnregisterEvent(expansion));
|
||||
|
||||
if (expansion instanceof Listener) {
|
||||
@ -410,18 +406,6 @@ public final class LocalExpansionManager implements Listener {
|
||||
|
||||
private void unregisterAll() {
|
||||
for (final PlaceholderExpansion expansion : Sets.newHashSet(expansions.values())) {
|
||||
if (expansion.persist() || expansion.getExpansionType() == Type.INTERNAL) {
|
||||
// Print warning if an external expansion is set to be persistent.
|
||||
if (expansion.getExpansionType() == Type.EXTERNAL && expansion.persist()) {
|
||||
Msg.warn("Nag author(s) %s about their expansion %s being marked as \"external\" "
|
||||
+ "but having persist() set to true!", expansion.getAuthor(), expansion.getIdentifier());
|
||||
Msg.warn("External Expansions should not be set to be persistent! PlaceholderAPI "
|
||||
+ "will respect this setting and skip the unregister of this Expansion...");
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
expansion.unregister();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user