v23.6
版本发布时间: 2017-12-22 01:26:26
google/guava最新发布版本:v33.3.1(2024-09-24 04:55:13)
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
. (794a8ca43) -
concurrent
: Added arun
method toFutureCombiner
to allow passing aRunnable
toFutures.whenAllComplete
andFutures.whenAllSucceed
(de28fd831) -
concurrent
: MadeFutures.getUnchecked
available under GWT. (b1d9d99b6) -
net
: Added "Server-Timing" HTTP header toHttpHeaders
according to https://www.w3.org/TR/server-timing/ (f089e55e5) -
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.