Skip to content

Commit 3ee58b4

Browse files
authored
Merge pull request #173 from basil/nullable
Remove `@Nullable` annotation
2 parents d3e506d + 4014bd5 commit 3ee58b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jenkinsci/plugins/workflow/steps/StepContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public abstract class StepContext implements FutureCallback<Object>, Serializabl
7676
* @see BodyInvoker#withContext
7777
* @see DynamicContext
7878
*/
79-
public abstract @Nullable <T> T get(Class<T> key) throws IOException, InterruptedException;
79+
public abstract <T> T get(Class<T> key) throws IOException, InterruptedException;
8080

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

0 commit comments

Comments
 (0)