File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
micrometer-core/src/test/java/io/micrometer/core/instrument/binder/grpc Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ehcache2 = "2.10.9.2"
1717ehcache3 = " 3.11.1"
1818gmetric4j = " 1.0.10"
1919google-cloud-monitoring = " 3.76.0"
20- grpc = " 1.75 .0"
20+ grpc = " 1.76 .0"
2121grpcKotlin = " 1.4.3"
2222guava = " 32.1.3-jre"
2323guice = " 5.1.0"
Original file line number Diff line number Diff line change @@ -196,6 +196,8 @@ void unaryRpcAsync() {
196196 ListenableFuture <SimpleResponse > future = stub .unaryRpc (request );
197197 Futures .addCallback (future , new FutureCallback <>() {
198198 @ Override
199+ // NullAway thinks the parent is nullable
200+ @ SuppressWarnings ("NullAway" )
199201 public void onSuccess (SimpleResponse result ) {
200202 responses .add (result .getResponseMessage ());
201203 }
You can’t perform that action at this time.
0 commit comments