Skip to content

Commit

Permalink
Fix deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
twalthr committed Nov 25, 2024
1 parent 833601c commit 3f3190f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,12 +299,14 @@ public Builder staticArguments(StaticArgument... staticArguments) {
}

/** @deprecated Use {@link #staticArguments(StaticArgument...)} instead. */
@Deprecated
public Builder namedArguments(String... argumentNames) {
this.typeInferenceBuilder.namedArguments(Arrays.asList(argumentNames));
return this;
}

/** @deprecated Use {@link #staticArguments(StaticArgument...)} instead. */
@Deprecated
public Builder typedArguments(DataType... argumentTypes) {
this.typeInferenceBuilder.typedArguments(Arrays.asList(argumentTypes));
return this;
Expand Down

0 comments on commit 3f3190f

Please sign in to comment.