23.6
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.6-jre</version>
<!-- or, for Android: -->
<version>23.6-android</version>
</dependency>
Javadoc
JDiff
Changelog
concurrent
: AddedUninterruptibles
methods forCondition
. (794a8ca)concurrent
: Added arun
method toFutureCombiner
to allow passing aRunnable
toFutures.whenAllComplete
andFutures.whenAllSucceed
(de28fd8)concurrent
: MadeFutures.getUnchecked
available under GWT. (b1d9d99)net
: Added "Server-Timing" HTTP header toHttpHeaders
according to https://www.w3.org/TR/server-timing/ (f089e55)testing
: Started recognizing@NullableDecl
inNullPointerTester
and friends.- Migrated from
jsr305
@Nullable
to the Checker Framework@NullableDecl
. Tools that read these annotations may need to be updated to recognize the new annotation. For Kotlin in particular, we sent a pull request, which has been merged for 1.2.20. - Migrated from
jsr305
@CheckReturnValue
,@GuardedBy
and@OverridingMethodsMustInvokeSuper
to the Error Prone equivalents.