Skip to content

Commit 043e90a

Browse files
dbyron0kiview
authored andcommitted
Remove com.google.code.findbugs:jsr305 dependency and use org.jetbrains.annotations.Nullable (#920)
Closes #912
1 parent 78a0f69 commit 043e90a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

core/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ dependencies {
7676
compile 'org.slf4j:slf4j-ext:1.7.25'
7777
compile 'org.jetbrains:annotations:15.0'
7878
compile 'javax.annotation:javax.annotation-api:1.3.1'
79-
compile 'com.google.code.findbugs:jsr305:3.0.2'
8079
compile 'org.apache.commons:commons-compress:1.18'
8180
// Added for JDK9 compatibility since it's missing this package
8281
compile 'javax.xml.bind:jaxb-api:2.3.0'

core/src/main/java/org/testcontainers/dockerclient/transport/okhttp/OkHttpInvocationBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
import okio.BufferedSource;
3232
import okio.Okio;
3333
import okio.Source;
34+
import org.jetbrains.annotations.Nullable;
3435
import org.testcontainers.DockerClientFactory;
3536

36-
import javax.annotation.Nullable;
3737
import java.io.ByteArrayInputStream;
3838
import java.io.IOException;
3939
import java.io.InputStream;

0 commit comments

Comments
 (0)