Skip to content

Commit

Permalink
Revert change to Nullable annotation placement to fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Konicai committed May 10, 2023
1 parent 132cce0 commit 38fac73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void send(FormPlayer recipient, Map<String, String> args) throws Argument
send(recipient, new MapResolver(placeholders).then(resolver));
}

public void send(FormPlayer recipient, String @Nullable... args) throws ArgumentException {
public void send(FormPlayer recipient, @Nullable String... args) throws ArgumentException {
Resolver resolver = placeholders.resolver(recipient);
if (arguments.isEmpty()) {
send(recipient, resolver);
Expand Down

0 comments on commit 38fac73

Please sign in to comment.