Skip to content

Commit 1722a14

Browse files
rbutcherjetersen
authored andcommitted
Removing annotations
1 parent 3bcadcd commit 1722a14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jenkinsci/plugins/docker/workflow/client/WindowsDockerClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ public Optional<String> getContainerIdIfContainerized() throws IOException, Inte
103103
return Optional.of(getLongIdResult.getOut());
104104
}
105105

106-
private LaunchResult launch(@Nonnull EnvVars env, boolean quiet, FilePath workDir, String... args) throws IOException, InterruptedException {
106+
private LaunchResult launch(EnvVars env, boolean quiet, FilePath workDir, String... args) throws IOException, InterruptedException {
107107
return launch(env, quiet, workDir, new ArgumentListBuilder(args));
108108
}
109-
private LaunchResult launch(@Nonnull EnvVars env, boolean quiet, FilePath workDir, ArgumentListBuilder argb) throws IOException, InterruptedException {
109+
private LaunchResult launch(EnvVars env, boolean quiet, FilePath workDir, ArgumentListBuilder argb) throws IOException, InterruptedException {
110110
if (LOGGER.isLoggable(Level.FINE)) {
111111
LOGGER.log(Level.FINE, "Executing command \"{0}\"", argb);
112112
}

0 commit comments

Comments
 (0)