Re-add NotNull's

(cherry picked from commit 2bfd8e7e5e)
This commit is contained in:
Starmism 2021-06-30 05:43:14 -06:00
parent ac9b0c42b7
commit 679ef90091
1 changed files with 5 additions and 0 deletions

View File

@ -45,6 +45,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
* *
* @return placeholder identifier that is associated with this expansion * @return placeholder identifier that is associated with this expansion
*/ */
@NotNull
public abstract String getIdentifier(); public abstract String getIdentifier();
/** /**
@ -52,6 +53,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
* *
* @return name of the author for this expansion * @return name of the author for this expansion
*/ */
@NotNull
public abstract String getAuthor(); public abstract String getAuthor();
/** /**
@ -59,6 +61,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
* *
* @return current version of this expansion * @return current version of this expansion
*/ */
@NotNull
public abstract String getVersion(); public abstract String getVersion();
/** /**
@ -66,6 +69,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
* *
* @return {@link #getIdentifier()} by default, name of this expansion if specified * @return {@link #getIdentifier()} by default, name of this expansion if specified
*/ */
@NotNull
public String getName() { public String getName() {
return getIdentifier(); return getIdentifier();
} }
@ -85,6 +89,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
* *
* @return placeholder list that this expansion provides * @return placeholder list that this expansion provides
*/ */
@NotNull
public List<String> getPlaceholders() { public List<String> getPlaceholders() {
return Collections.emptyList(); return Collections.emptyList();
} }