Skip to content

Commit

Permalink
Update PlaceholderAPIIntegration.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mcchampions committed Oct 5, 2024
1 parent 1a1d04c commit 90b152f
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
import org.bukkit.OfflinePlayer;
import org.bukkit.entity.Player;
import org.jetbrains.annotations.NotNull;

/**
* This is our integration for {@link PlaceholderAPI}.
Expand All @@ -28,17 +29,17 @@ public PlaceholderAPIIntegration(Slimefun plugin) {
}

@Override
public String getIdentifier() {
public @NotNull String getIdentifier() {
return "slimefun";
}

@Override
public String getVersion() {
public @NotNull String getVersion() {
return version;
}

@Override
public String getAuthor() {
public @NotNull String getAuthor() {
return author;
}

Expand Down

0 comments on commit 90b152f

Please sign in to comment.