We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a32731b commit 44a0a83Copy full SHA for 44a0a83
src/test/java/com/influxdb/v3/client/InfluxDBClientTest.java
@@ -30,6 +30,7 @@
30
import java.util.Properties;
31
import java.util.UUID;
32
import java.util.stream.Stream;
33
+import javax.annotation.Nonnull;
34
35
import org.assertj.core.api.Assertions;
36
import org.junit.jupiter.api.Test;
@@ -281,7 +282,7 @@ public void testQuery() throws Exception {
281
282
}
283
284
- private void assertGetdataSuccess(InfluxDBClient influxDBClient) throws Exception {
285
+ private void assertGetdataSuccess(@Nonnull final InfluxDBClient influxDBClient) throws Exception {
286
influxDBClient.writePoint(
287
Point.measurement("test1")
288
.setField("field", "field1")
0 commit comments