Skip to content

Commit

Permalink
Remove @Nullable annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Jun 25, 2024
1 parent 046c6ef commit 4014bd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public abstract class StepContext implements FutureCallback<Object>, Serializabl
* @see BodyInvoker#withContext
* @see DynamicContext
*/
public abstract @Nullable <T> T get(Class<T> key) throws IOException, InterruptedException;
public abstract <T> T get(Class<T> key) throws IOException, InterruptedException;

@Override public abstract void onSuccess(@Nullable Object result);

Expand Down

0 comments on commit 4014bd5

Please sign in to comment.