Skip to content

Commit

Permalink
EOL JSR 305 (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored May 21, 2023
1 parent bb0c233 commit bedb0be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import javax.annotation.Nonnull;
import edu.umd.cs.findbugs.annotations.NonNull;

import com.github.dockerjava.api.DockerClient;
import com.github.dockerjava.api.command.*;
Expand Down Expand Up @@ -70,7 +70,7 @@ public class DelegatingDockerClient implements DockerClient {
*
* @param delegate The {@link DockerClient} to delegate to.
*/
public DelegatingDockerClient(@Nonnull DockerClient delegate) {
public DelegatingDockerClient(@NonNull DockerClient delegate) {
this.delegate = delegate;
}

Expand All @@ -81,7 +81,7 @@ public DelegatingDockerClient(@Nonnull DockerClient delegate) {
*
* @return the {@link DockerClient} to be delegated to.
*/
@Nonnull
@NonNull
protected DockerClient getDelegate() {
return delegate;
}
Expand Down

0 comments on commit bedb0be

Please sign in to comment.