Skip to content

Commit c884908

Browse files
build(deps): bump com.google.guava:guava from 33.4.0-jre to 33.4.8-jre (#264)
* build(deps): bump com.google.guava:guava from 33.4.0-jre to 33.4.8-jre Bumps [com.google.guava:guava](https://github.com/google/guava) from 33.4.0-jre to 33.4.8-jre. - [Release notes](https://github.com/google/guava/releases) - [Commits](https://github.com/google/guava/commits) --- updated-dependencies: - dependency-name: com.google.guava:guava dependency-version: 33.4.8-jre dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * fix: dependency * fix: dependency --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jakub Bednar <[email protected]>
1 parent 6f03d62 commit c884908

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229
<dependency>
230230
<groupId>com.google.guava</groupId>
231231
<artifactId>guava</artifactId>
232-
<version>33.4.0-jre</version>
232+
<version>33.4.8-jre</version>
233233
<exclusions>
234234
<exclusion>
235235
<groupId>com.google.errorprone</groupId>

src/main/java/com/influxdb/v3/client/Point.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
import javax.annotation.Nullable;
3333
import javax.annotation.concurrent.NotThreadSafe;
3434

35-
import org.checkerframework.checker.nullness.qual.NonNull;
36-
3735
import com.influxdb.v3.client.internal.Arguments;
3836
import com.influxdb.v3.client.write.WriteOptions;
3937
import com.influxdb.v3.client.write.WritePrecision;
@@ -490,7 +488,7 @@ public Point setFields(@Nonnull final Map<String, Object> fieldsToAdd) {
490488
* @return this
491489
*/
492490
@Nonnull
493-
public Point removeField(@NonNull final String name) {
491+
public Point removeField(@Nonnull final String name) {
494492
values.removeField(name);
495493

496494
return this;

src/main/java/com/influxdb/v3/client/PointValues.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
import javax.annotation.Nullable;
3030
import javax.annotation.concurrent.NotThreadSafe;
3131

32-
import org.checkerframework.checker.nullness.qual.NonNull;
33-
3432
import com.influxdb.v3.client.internal.Arguments;
3533
import com.influxdb.v3.client.internal.NanosecondConverter;
3634
import com.influxdb.v3.client.write.WritePrecision;
@@ -459,7 +457,7 @@ public PointValues setFields(@Nonnull final Map<String, Object> fieldsToAdd) {
459457
* @return this
460458
*/
461459
@Nonnull
462-
public PointValues removeField(@NonNull final String name) {
460+
public PointValues removeField(@Nonnull final String name) {
463461
fields.remove(name);
464462

465463
return this;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333
import java.util.concurrent.TimeUnit;
3434
import java.util.stream.Collectors;
3535
import java.util.stream.Stream;
36+
import javax.annotation.Nonnull;
3637

3738
import io.grpc.Deadline;
3839
import org.apache.arrow.flight.CallStatus;
3940
import org.apache.arrow.flight.FlightRuntimeException;
4041
import org.apache.arrow.flight.FlightStatusCode;
4142
import org.apache.arrow.vector.VectorSchemaRoot;
4243
import org.assertj.core.api.Assertions;
43-
import org.jetbrains.annotations.NotNull;
4444
import org.junit.jupiter.api.AfterEach;
4545
import org.junit.jupiter.api.Disabled;
4646
import org.junit.jupiter.api.Test;
@@ -504,7 +504,7 @@ public void queryGrpcMaxOutSizeTest() {
504504

505505
}
506506

507-
@NotNull
507+
@Nonnull
508508
private static InfluxDBClient getInstance() {
509509
return InfluxDBClient.getInstance(
510510
System.getenv("TESTING_INFLUXDB_URL"),

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
import java.util.Collections;
2828
import java.util.List;
2929
import java.util.Map;
30+
import javax.annotation.Nonnull;
3031

3132
import io.netty.handler.codec.http.HttpResponseStatus;
3233
import mockwebserver3.RecordedRequest;
3334
import okhttp3.HttpUrl;
3435
import org.assertj.core.api.Assertions;
35-
import org.jetbrains.annotations.NotNull;
3636
import org.junit.jupiter.api.AfterEach;
3737
import org.junit.jupiter.api.BeforeEach;
3838
import org.junit.jupiter.api.Test;
@@ -399,7 +399,7 @@ private void checkWriteCalled(final String expectedPath, final String expectedDB
399399
}
400400
}
401401

402-
@NotNull
402+
@Nonnull
403403
private RecordedRequest assertThatServerRequested() throws InterruptedException {
404404
assertThat(mockServer.getRequestCount()).isEqualTo(1);
405405
RecordedRequest request = mockServer.takeRequest();

0 commit comments

Comments
 (0)