mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2025-02-05 15:55:28 +01:00
added missing @NotNull to return value and String parameter of setBracketPlaceholders(Player, String)
This commit is contained in:
parent
be956f52b0
commit
152105017d
@ -150,7 +150,8 @@ public final class PlaceholderAPI {
|
|||||||
* @param text Text to set the placeholder values in
|
* @param text Text to set the placeholder values in
|
||||||
* @return String containing all translated placeholders
|
* @return String containing all translated placeholders
|
||||||
*/
|
*/
|
||||||
public static String setBracketPlaceholders(Player player, String text) {
|
@NotNull
|
||||||
|
public static String setBracketPlaceholders(Player player, @NotNull String text) {
|
||||||
return setBracketPlaceholders((OfflinePlayer) player, text);
|
return setBracketPlaceholders((OfflinePlayer) player, text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user