From: Matt Corallo Date: Thu, 5 Aug 2021 03:17:43 +0000 (+0000) Subject: Use findbugs for Nullable annotations instead of jetbrains X-Git-Tag: v0.0.99.2~14 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=87a083a5a785090029fb75c0b1dde28fc0341f04;p=ldk-java Use findbugs for Nullable annotations instead of jetbrains --- diff --git a/javatester/pom.xml b/javatester/pom.xml index 02137e3f..17ea0e1e 100644 --- a/javatester/pom.xml +++ b/javatester/pom.xml @@ -21,9 +21,9 @@ compile - org.jetbrains - annotations - RELEASE + com.google.code.findbugs + jsr305 + 3.0.2 compile diff --git a/pom.xml b/pom.xml index 03201f28..f26ae43c 100644 --- a/pom.xml +++ b/pom.xml @@ -27,9 +27,9 @@ test - org.jetbrains - annotations - RELEASE + com.google.code.findbugs + jsr305 + 3.0.2 compile diff --git a/src/main/java/org/ldk/batteries/ChannelManagerConstructor.java b/src/main/java/org/ldk/batteries/ChannelManagerConstructor.java index da5e3fb9..40f6ac19 100644 --- a/src/main/java/org/ldk/batteries/ChannelManagerConstructor.java +++ b/src/main/java/org/ldk/batteries/ChannelManagerConstructor.java @@ -1,6 +1,6 @@ package org.ldk.batteries; -import org.jetbrains.annotations.Nullable; +import javax.annotation.Nullable; import org.ldk.enums.Network; import org.ldk.structs.*; import org.ldk.util.TwoTuple;