Skip to content

Commit 44a0a83

Browse files
fix: linter
1 parent a32731b commit 44a0a83

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/com/influxdb/v3/client/InfluxDBClientTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import java.util.Properties;
3131
import java.util.UUID;
3232
import java.util.stream.Stream;
33+
import javax.annotation.Nonnull;
3334

3435
import org.assertj.core.api.Assertions;
3536
import org.junit.jupiter.api.Test;
@@ -281,7 +282,7 @@ public void testQuery() throws Exception {
281282
}
282283
}
283284

284-
private void assertGetdataSuccess(InfluxDBClient influxDBClient) throws Exception {
285+
private void assertGetdataSuccess(@Nonnull final InfluxDBClient influxDBClient) throws Exception {
285286
influxDBClient.writePoint(
286287
Point.measurement("test1")
287288
.setField("field", "field1")

0 commit comments

Comments
 (0)