23.2
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.2-jre</version>
<!-- or, for Android: -->
<version>23.2-android</version>
</dependency>
Javadoc
JDiff
Changelog
- Added JPMS module name
com.google.common
for Guava. base
: Deprecated built-inCharMatcher
s which cannot work as expected because the API does not support supplementary code points.collect
: Fixed #2962collect
: Fixed a bug inHashBiMap.inverse().forcePut()
graph
: Added implementation forcommon.graph.Traverser
, a new class that provides efficient breadth-first and depth-first traversal of graphs and trees. It should be used in place ofcommon.collect.TreeTraverser
, which will be deprecated.graph
: Fixed regression inValueGraph.edgeValueOrDefault()
(from Guava 23) that caused it sometimes to returnnull
instead of the default value.