diff --git a/android/guava-testlib/src/com/google/common/escape/testing/package-info.java b/android/guava-testlib/src/com/google/common/escape/testing/package-info.java
index 869884734e45..6b50614695c1 100644
--- a/android/guava-testlib/src/com/google/common/escape/testing/package-info.java
+++ b/android/guava-testlib/src/com/google/common/escape/testing/package-info.java
@@ -17,7 +17,7 @@
/**
* Testing utilities for use in tests of {@code com.google.common.escape}.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/android/guava-testlib/src/com/google/common/testing/package-info.java b/android/guava-testlib/src/com/google/common/testing/package-info.java
index 914e2d1f2adb..2e23a6b0eb14 100644
--- a/android/guava-testlib/src/com/google/common/testing/package-info.java
+++ b/android/guava-testlib/src/com/google/common/testing/package-info.java
@@ -16,7 +16,7 @@
/**
* This package contains testing utilities. It is a part of the open-source Guava library.
+ * href="https://github.com/google/guava">Guava library.
*/
@com.google.errorprone.annotations.CheckReturnValue
@javax.annotation.ParametersAreNonnullByDefault
diff --git a/android/guava/src/com/google/common/annotations/package-info.java b/android/guava/src/com/google/common/annotations/package-info.java
index 9ad041ffeb60..f285f2dcee01 100644
--- a/android/guava/src/com/google/common/annotations/package-info.java
+++ b/android/guava/src/com/google/common/annotations/package-info.java
@@ -14,6 +14,6 @@
/**
* Common annotation types. This package is a part of the open-source Guava library.
+ * href="https://github.com/google/guava">Guava library.
*/
package com.google.common.annotations;
diff --git a/android/guava/src/com/google/common/base/package-info.java b/android/guava/src/com/google/common/base/package-info.java
index a32b50dafd84..df3bf0a5a58e 100644
--- a/android/guava/src/com/google/common/base/package-info.java
+++ b/android/guava/src/com/google/common/base/package-info.java
@@ -15,7 +15,7 @@
/**
* Basic utility libraries and interfaces.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
*
Contents
diff --git a/android/guava/src/com/google/common/cache/package-info.java b/android/guava/src/com/google/common/cache/package-info.java
index 3399daca6b2c..4b5b0fe204b4 100644
--- a/android/guava/src/com/google/common/cache/package-info.java
+++ b/android/guava/src/com/google/common/cache/package-info.java
@@ -15,16 +15,14 @@
/**
* This package contains caching utilities.
*
- * The core interface used to represent caches is {@link com.google.common.cache.Cache}.
- * In-memory caches can be configured and created using {@link
- * com.google.common.cache.CacheBuilder}, with cache entries being loaded by {@link
- * com.google.common.cache.CacheLoader}. Statistics about cache performance are exposed using {@link
- * com.google.common.cache.CacheStats}.
+ *
The core interface used to represent caches is {@link Cache}. In-memory caches can be
+ * configured and created using {@link CacheBuilder}, with cache entries being loaded by {@link
+ * CacheLoader}. Statistics about cache performance are exposed using {@link CacheStats}.
*
*
See the Guava User Guide article on caches.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
* @author Charles Fry
diff --git a/android/guava/src/com/google/common/collect/package-info.java b/android/guava/src/com/google/common/collect/package-info.java
index d46e65fd3a13..853fb348ea26 100644
--- a/android/guava/src/com/google/common/collect/package-info.java
+++ b/android/guava/src/com/google/common/collect/package-info.java
@@ -17,45 +17,43 @@
/**
* This package contains generic collection interfaces and implementations, and other utilities for
* working with collections. It is a part of the open-source Guava library.
+ * href="https://github.com/google/guava">Guava library.
*
*
Collection Types
*
*
- * - {@link com.google.common.collect.BiMap}
+ *
- {@link BiMap}
*
- An extension of {@link java.util.Map} that guarantees the uniqueness of its values as well
* as that of its keys. This is sometimes called an "invertible map," since the restriction on
- * values enables it to support an {@linkplain com.google.common.collect.BiMap#inverse inverse
- * view} -- which is another instance of {@code BiMap}.
- *
- {@link com.google.common.collect.Multiset}
+ * values enables it to support an {@linkplain BiMap#inverse inverse view} -- which is another
+ * instance of {@code BiMap}.
+ *
- {@link Multiset}
*
- An extension of {@link java.util.Collection} that may contain duplicate values like a
* {@link java.util.List}, yet has order-independent equality like a {@link java.util.Set}.
* One typical use for a multiset is to represent a histogram.
- *
- {@link com.google.common.collect.Multimap}
+ *
- {@link Multimap}
*
- A new type, which is similar to {@link java.util.Map}, but may contain multiple entries
- * with the same key. Some behaviors of {@link com.google.common.collect.Multimap} are left
- * unspecified and are provided only by the subtypes mentioned below.
- *
- {@link com.google.common.collect.ListMultimap}
- *
- An extension of {@link com.google.common.collect.Multimap} which permits duplicate entries,
- * supports random access of values for a particular key, and has partially order-dependent
- * equality as defined by {@link com.google.common.collect.ListMultimap#equals(Object)}.
- * {@code ListMultimap} takes its name from the fact that the {@linkplain
- * com.google.common.collect.ListMultimap#get collection of values} associated with a given
- * key fulfills the {@link java.util.List} contract.
- *
- {@link com.google.common.collect.SetMultimap}
- *
- An extension of {@link com.google.common.collect.Multimap} which has order-independent
- * equality and does not allow duplicate entries; that is, while a key may appear twice in a
- * {@code SetMultimap}, each must map to a different value. {@code SetMultimap} takes its name
- * from the fact that the {@linkplain com.google.common.collect.SetMultimap#get collection of
- * values} associated with a given key fulfills the {@link java.util.Set} contract.
- *
- {@link com.google.common.collect.SortedSetMultimap}
- *
- An extension of {@link com.google.common.collect.SetMultimap} for which the {@linkplain
- * com.google.common.collect.SortedSetMultimap#get collection values} associated with a given
- * key is a {@link java.util.SortedSet}.
- *
- {@link com.google.common.collect.Table}
+ * with the same key. Some behaviors of {@link Multimap} are left unspecified and are provided
+ * only by the subtypes mentioned below.
+ *
- {@link ListMultimap}
+ *
- An extension of {@link Multimap} which permits duplicate entries, supports random access of
+ * values for a particular key, and has partially order-dependent equality as defined
+ * by {@link ListMultimap#equals(Object)}. {@code ListMultimap} takes its name from the fact
+ * that the {@linkplain ListMultimap#get collection of values} associated with a given key
+ * fulfills the {@link java.util.List} contract.
+ *
- {@link SetMultimap}
+ *
- An extension of {@link Multimap} which has order-independent equality and does not allow
+ * duplicate entries; that is, while a key may appear twice in a {@code SetMultimap}, each
+ * must map to a different value. {@code SetMultimap} takes its name from the fact that the
+ * {@linkplain SetMultimap#get collection of values} associated with a given key fulfills the
+ * {@link java.util.Set} contract.
+ *
- {@link SortedSetMultimap}
+ *
- An extension of {@link SetMultimap} for which the {@linkplain SortedSetMultimap#get
+ * collection values} associated with a given key is a {@link java.util.SortedSet}.
+ *
- {@link Table}
*
- A new type, which is similar to {@link java.util.Map}, but which indexes its values by an
* ordered pair of keys, a row key and column key.
- *
- {@link com.google.common.collect.ClassToInstanceMap}
+ *
- {@link ClassToInstanceMap}
*
- An extension of {@link java.util.Map} that associates a raw type with an instance of that
* type.
*
@@ -65,151 +63,150 @@
* of {@link java.util.List}
*
*
- * - {@link com.google.common.collect.ImmutableList}
+ *
- {@link ImmutableList}
*
*
* of {@link java.util.Set}
*
*
- * - {@link com.google.common.collect.ImmutableSet}
- *
- {@link com.google.common.collect.ImmutableSortedSet}
- *
- {@link com.google.common.collect.ContiguousSet} (see {@code Range})
+ *
- {@link ImmutableSet}
+ *
- {@link ImmutableSortedSet}
+ *
- {@link ContiguousSet} (see {@code Range})
*
*
* of {@link java.util.Map}
*
*
- * - {@link com.google.common.collect.ImmutableMap}
- *
- {@link com.google.common.collect.ImmutableSortedMap}
- *
- {@link com.google.common.collect.MapMaker}
+ *
- {@link ImmutableMap}
+ *
- {@link ImmutableSortedMap}
+ *
- {@link MapMaker}
*
*
- * of {@link com.google.common.collect.BiMap}
+ * of {@link BiMap}
*
*
- * - {@link com.google.common.collect.ImmutableBiMap}
- *
- {@link com.google.common.collect.HashBiMap}
- *
- {@link com.google.common.collect.EnumBiMap}
- *
- {@link com.google.common.collect.EnumHashBiMap}
+ *
- {@link ImmutableBiMap}
+ *
- {@link HashBiMap}
+ *
- {@link EnumBiMap}
+ *
- {@link EnumHashBiMap}
*
*
- * of {@link com.google.common.collect.Multiset}
+ * of {@link Multiset}
*
*
- * - {@link com.google.common.collect.ImmutableMultiset}
- *
- {@link com.google.common.collect.ImmutableSortedMultiset}
- *
- {@link com.google.common.collect.HashMultiset}
- *
- {@link com.google.common.collect.LinkedHashMultiset}
- *
- {@link com.google.common.collect.TreeMultiset}
- *
- {@link com.google.common.collect.EnumMultiset}
- *
- {@link com.google.common.collect.ConcurrentHashMultiset}
+ *
- {@link ImmutableMultiset}
+ *
- {@link ImmutableSortedMultiset}
+ *
- {@link HashMultiset}
+ *
- {@link LinkedHashMultiset}
+ *
- {@link TreeMultiset}
+ *
- {@link EnumMultiset}
+ *
- {@link ConcurrentHashMultiset}
*
*
- * of {@link com.google.common.collect.Multimap}
+ * of {@link Multimap}
*
*
- * - {@link com.google.common.collect.ImmutableMultimap}
- *
- {@link com.google.common.collect.ImmutableListMultimap}
- *
- {@link com.google.common.collect.ImmutableSetMultimap}
- *
- {@link com.google.common.collect.ArrayListMultimap}
- *
- {@link com.google.common.collect.HashMultimap}
- *
- {@link com.google.common.collect.TreeMultimap}
- *
- {@link com.google.common.collect.LinkedHashMultimap}
- *
- {@link com.google.common.collect.LinkedListMultimap}
+ *
- {@link ImmutableMultimap}
+ *
- {@link ImmutableListMultimap}
+ *
- {@link ImmutableSetMultimap}
+ *
- {@link ArrayListMultimap}
+ *
- {@link HashMultimap}
+ *
- {@link TreeMultimap}
+ *
- {@link LinkedHashMultimap}
+ *
- {@link LinkedListMultimap}
*
*
- * of {@link com.google.common.collect.Table}
+ * of {@link Table}
*
*
- * - {@link com.google.common.collect.ImmutableTable}
- *
- {@link com.google.common.collect.ArrayTable}
- *
- {@link com.google.common.collect.HashBasedTable}
- *
- {@link com.google.common.collect.TreeBasedTable}
+ *
- {@link ImmutableTable}
+ *
- {@link ArrayTable}
+ *
- {@link HashBasedTable}
+ *
- {@link TreeBasedTable}
*
*
- * of {@link com.google.common.collect.ClassToInstanceMap}
+ * of {@link ClassToInstanceMap}
*
*
- * - {@link com.google.common.collect.ImmutableClassToInstanceMap}
- *
- {@link com.google.common.collect.MutableClassToInstanceMap}
+ *
- {@link ImmutableClassToInstanceMap}
+ *
- {@link MutableClassToInstanceMap}
*
*
* Classes of static utility methods
*
*
- * - {@link com.google.common.collect.Collections2}
- *
- {@link com.google.common.collect.Iterators}
- *
- {@link com.google.common.collect.Iterables}
- *
- {@link com.google.common.collect.Lists}
- *
- {@link com.google.common.collect.Maps}
- *
- {@link com.google.common.collect.Queues}
- *
- {@link com.google.common.collect.Sets}
- *
- {@link com.google.common.collect.Multisets}
- *
- {@link com.google.common.collect.Multimaps}
- *
- {@link com.google.common.collect.Tables}
- *
- {@link com.google.common.collect.ObjectArrays}
+ *
- {@link Collections2}
+ *
- {@link Iterators}
+ *
- {@link Iterables}
+ *
- {@link Lists}
+ *
- {@link Maps}
+ *
- {@link Queues}
+ *
- {@link Sets}
+ *
- {@link Multisets}
+ *
- {@link Multimaps}
+ *
- {@link Tables}
+ *
- {@link ObjectArrays}
*
*
* Comparison
*
*
- * - {@link com.google.common.collect.Ordering}
- *
- {@link com.google.common.collect.ComparisonChain}
+ *
- {@link Ordering}
+ *
- {@link ComparisonChain}
*
*
* Abstract implementations
*
*
- * - {@link com.google.common.collect.AbstractIterator}
- *
- {@link com.google.common.collect.AbstractSequentialIterator}
- *
- {@link com.google.common.collect.ImmutableCollection}
- *
- {@link com.google.common.collect.UnmodifiableIterator}
- *
- {@link com.google.common.collect.UnmodifiableListIterator}
+ *
- {@link AbstractIterator}
+ *
- {@link AbstractSequentialIterator}
+ *
- {@link ImmutableCollection}
+ *
- {@link UnmodifiableIterator}
+ *
- {@link UnmodifiableListIterator}
*
*
* Ranges
*
*
- * - {@link com.google.common.collect.Range}
- *
- {@link com.google.common.collect.RangeMap}
- *
- {@link com.google.common.collect.DiscreteDomain}
- *
- {@link com.google.common.collect.ContiguousSet}
+ *
- {@link Range}
+ *
- {@link RangeMap}
+ *
- {@link DiscreteDomain}
+ *
- {@link ContiguousSet}
*
*
* Other
*
*
- * - {@link com.google.common.collect.Interner}, {@link com.google.common.collect.Interners}
- *
- {@link com.google.common.collect.MapDifference}, {@link
- * com.google.common.collect.SortedMapDifference}
- *
- {@link com.google.common.collect.MinMaxPriorityQueue}
- *
- {@link com.google.common.collect.PeekingIterator}
+ *
- {@link Interner}, {@link Interners}
+ *
- {@link MapDifference}, {@link SortedMapDifference}
+ *
- {@link MinMaxPriorityQueue}
+ *
- {@link PeekingIterator}
*
*
* Forwarding collections
*
*
- * - {@link com.google.common.collect.ForwardingCollection}
- *
- {@link com.google.common.collect.ForwardingConcurrentMap}
- *
- {@link com.google.common.collect.ForwardingIterator}
- *
- {@link com.google.common.collect.ForwardingList}
- *
- {@link com.google.common.collect.ForwardingListIterator}
- *
- {@link com.google.common.collect.ForwardingListMultimap}
- *
- {@link com.google.common.collect.ForwardingMap}
- *
- {@link com.google.common.collect.ForwardingMapEntry}
- *
- {@link com.google.common.collect.ForwardingMultimap}
- *
- {@link com.google.common.collect.ForwardingMultiset}
- *
- {@link com.google.common.collect.ForwardingNavigableMap}
- *
- {@link com.google.common.collect.ForwardingNavigableSet}
- *
- {@link com.google.common.collect.ForwardingObject}
- *
- {@link com.google.common.collect.ForwardingQueue}
- *
- {@link com.google.common.collect.ForwardingSet}
- *
- {@link com.google.common.collect.ForwardingSetMultimap}
- *
- {@link com.google.common.collect.ForwardingSortedMap}
- *
- {@link com.google.common.collect.ForwardingSortedMultiset}
- *
- {@link com.google.common.collect.ForwardingSortedSet}
- *
- {@link com.google.common.collect.ForwardingSortedSetMultimap}
- *
- {@link com.google.common.collect.ForwardingTable}
+ *
- {@link ForwardingCollection}
+ *
- {@link ForwardingConcurrentMap}
+ *
- {@link ForwardingIterator}
+ *
- {@link ForwardingList}
+ *
- {@link ForwardingListIterator}
+ *
- {@link ForwardingListMultimap}
+ *
- {@link ForwardingMap}
+ *
- {@link ForwardingMapEntry}
+ *
- {@link ForwardingMultimap}
+ *
- {@link ForwardingMultiset}
+ *
- {@link ForwardingNavigableMap}
+ *
- {@link ForwardingNavigableSet}
+ *
- {@link ForwardingObject}
+ *
- {@link ForwardingQueue}
+ *
- {@link ForwardingSet}
+ *
- {@link ForwardingSetMultimap}
+ *
- {@link ForwardingSortedMap}
+ *
- {@link ForwardingSortedMultiset}
+ *
- {@link ForwardingSortedSet}
+ *
- {@link ForwardingSortedSetMultimap}
+ *
- {@link ForwardingTable}
*
*/
@CheckReturnValue
diff --git a/android/guava/src/com/google/common/escape/package-info.java b/android/guava/src/com/google/common/escape/package-info.java
index 8cd29e6f85fb..4c525386e6f6 100644
--- a/android/guava/src/com/google/common/escape/package-info.java
+++ b/android/guava/src/com/google/common/escape/package-info.java
@@ -14,14 +14,14 @@
/**
* Interfaces, utilities, and simple implementations of escapers and encoders. The primary type is
- * {@link com.google.common.escape.Escaper}.
+ * {@link Escaper}.
*
* Additional escapers implementations are found in the applicable packages: {@link
* com.google.common.html.HtmlEscapers} in {@code com.google.common.html}, {@link
* com.google.common.xml.XmlEscapers} in {@code com.google.common.xml}, and {@link
* com.google.common.net.UrlEscapers} in {@code com.google.common.net}.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/android/guava/src/com/google/common/html/package-info.java b/android/guava/src/com/google/common/html/package-info.java
index f84d7f23d0ca..1a97bccd1ab1 100644
--- a/android/guava/src/com/google/common/html/package-info.java
+++ b/android/guava/src/com/google/common/html/package-info.java
@@ -17,7 +17,7 @@
* for
* HTML.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/android/guava/src/com/google/common/io/package-info.java b/android/guava/src/com/google/common/io/package-info.java
index f0666b26f4b2..14a6c5770d07 100644
--- a/android/guava/src/com/google/common/io/package-info.java
+++ b/android/guava/src/com/google/common/io/package-info.java
@@ -16,13 +16,12 @@
* This package contains utility methods and classes for working with Java I/O; for example input
* streams, output streams, readers, writers, and files.
*
- *
At the core of this package are the Source/Sink types: {@link com.google.common.io.ByteSource
- * ByteSource}, {@link com.google.common.io.CharSource CharSource}, {@link
- * com.google.common.io.ByteSink ByteSink} and {@link com.google.common.io.CharSink CharSink}. They
- * are factories for I/O streams that provide many convenience methods that handle both opening and
+ *
At the core of this package are the Source/Sink types: {@link ByteSource ByteSource}, {@link
+ * CharSource CharSource}, {@link ByteSink ByteSink} and {@link CharSink CharSink}. They are
+ * factories for I/O streams that provide many convenience methods that handle both opening and
* closing streams for you.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library. For more information on Sources and Sinks as well as other features of this package, see
* I/O Explained on the Guava wiki.
*
diff --git a/android/guava/src/com/google/common/math/package-info.java b/android/guava/src/com/google/common/math/package-info.java
index 0408246e7452..6c4b85f7fdf3 100644
--- a/android/guava/src/com/google/common/math/package-info.java
+++ b/android/guava/src/com/google/common/math/package-info.java
@@ -15,7 +15,7 @@
/**
* Arithmetic functions operating on primitive values and {@link java.math.BigInteger} instances.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
*
See the Guava User Guide article on This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
* @author Craig Berry
diff --git a/android/guava/src/com/google/common/primitives/package-info.java b/android/guava/src/com/google/common/primitives/package-info.java
index 9504fa79be1a..a74abd9d605b 100644
--- a/android/guava/src/com/google/common/primitives/package-info.java
+++ b/android/guava/src/com/google/common/primitives/package-info.java
@@ -16,7 +16,7 @@
* Static utilities for working with the eight primitive types and {@code void}, and value types for
* treating them as unsigned.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
*
See the Guava User Guide article on General static utilities
*
*
- * - {@link com.google.common.primitives.Primitives}
+ *
- {@link Primitives}
*
*
* Per-type static utilities
*
*
- * - {@link com.google.common.primitives.Booleans}
- *
- {@link com.google.common.primitives.Bytes}
+ *
- {@link Booleans}
+ *
- {@link Bytes}
*
- * - {@link com.google.common.primitives.SignedBytes}
- *
- {@link com.google.common.primitives.UnsignedBytes}
+ *
- {@link SignedBytes}
+ *
- {@link UnsignedBytes}
*
- * - {@link com.google.common.primitives.Chars}
- *
- {@link com.google.common.primitives.Doubles}
- *
- {@link com.google.common.primitives.Floats}
- *
- {@link com.google.common.primitives.Ints}
+ *
- {@link Chars}
+ *
- {@link Doubles}
+ *
- {@link Floats}
+ *
- {@link Ints}
*
- * - {@link com.google.common.primitives.UnsignedInts}
+ *
- {@link UnsignedInts}
*
- * - {@link com.google.common.primitives.Longs}
+ *
- {@link Longs}
*
- * - {@link com.google.common.primitives.UnsignedLongs}
+ *
- {@link UnsignedLongs}
*
- * - {@link com.google.common.primitives.Shorts}
+ *
- {@link Shorts}
*
*
* Value types
*
*
- * - {@link com.google.common.primitives.UnsignedInteger}
- *
- {@link com.google.common.primitives.UnsignedLong}
+ *
- {@link UnsignedInteger}
+ *
- {@link UnsignedLong}
*
*/
@ParametersAreNonnullByDefault
diff --git a/android/guava/src/com/google/common/reflect/package-info.java b/android/guava/src/com/google/common/reflect/package-info.java
index 6b6047169c13..5875ccff5d2e 100644
--- a/android/guava/src/com/google/common/reflect/package-info.java
+++ b/android/guava/src/com/google/common/reflect/package-info.java
@@ -14,7 +14,7 @@
/**
* This package contains utilities to work with Java reflection. It is a part of the open-source Guava library.
+ * href="https://github.com/google/guava">Guava library.
*/
@CheckReturnValue
@ParametersAreNonnullByDefault
diff --git a/android/guava/src/com/google/common/util/concurrent/package-info.java b/android/guava/src/com/google/common/util/concurrent/package-info.java
index a2533c1fc8e9..dd7f9f372324 100644
--- a/android/guava/src/com/google/common/util/concurrent/package-info.java
+++ b/android/guava/src/com/google/common/util/concurrent/package-info.java
@@ -15,14 +15,12 @@
/**
* Concurrency utilities.
*
- *
Commonly used types include {@link com.google.common.util.concurrent.ListenableFuture} and
- * {@link com.google.common.util.concurrent.Service}.
+ *
Commonly used types include {@link ListenableFuture} and {@link Service}.
*
- *
Commonly used utilities include {@link com.google.common.util.concurrent.Futures}, {@link
- * com.google.common.util.concurrent.MoreExecutors}, and {@link
- * com.google.common.util.concurrent.ThreadFactoryBuilder}.
+ *
Commonly used utilities include {@link Futures}, {@link MoreExecutors}, and {@link
+ * ThreadFactoryBuilder}.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/android/guava/src/com/google/common/xml/package-info.java b/android/guava/src/com/google/common/xml/package-info.java
index bd4c952162f3..8693276272ef 100644
--- a/android/guava/src/com/google/common/xml/package-info.java
+++ b/android/guava/src/com/google/common/xml/package-info.java
@@ -17,7 +17,7 @@
* for
* XML.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/guava-testlib/src/com/google/common/escape/testing/package-info.java b/guava-testlib/src/com/google/common/escape/testing/package-info.java
index 869884734e45..6b50614695c1 100644
--- a/guava-testlib/src/com/google/common/escape/testing/package-info.java
+++ b/guava-testlib/src/com/google/common/escape/testing/package-info.java
@@ -17,7 +17,7 @@
/**
* Testing utilities for use in tests of {@code com.google.common.escape}.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/guava-testlib/src/com/google/common/testing/package-info.java b/guava-testlib/src/com/google/common/testing/package-info.java
index 914e2d1f2adb..2e23a6b0eb14 100644
--- a/guava-testlib/src/com/google/common/testing/package-info.java
+++ b/guava-testlib/src/com/google/common/testing/package-info.java
@@ -16,7 +16,7 @@
/**
* This package contains testing utilities. It is a part of the open-source Guava library.
+ * href="https://github.com/google/guava">Guava library.
*/
@com.google.errorprone.annotations.CheckReturnValue
@javax.annotation.ParametersAreNonnullByDefault
diff --git a/guava/src/com/google/common/annotations/package-info.java b/guava/src/com/google/common/annotations/package-info.java
index 9ad041ffeb60..f285f2dcee01 100644
--- a/guava/src/com/google/common/annotations/package-info.java
+++ b/guava/src/com/google/common/annotations/package-info.java
@@ -14,6 +14,6 @@
/**
* Common annotation types. This package is a part of the open-source Guava library.
+ * href="https://github.com/google/guava">Guava library.
*/
package com.google.common.annotations;
diff --git a/guava/src/com/google/common/base/package-info.java b/guava/src/com/google/common/base/package-info.java
index a32b50dafd84..df3bf0a5a58e 100644
--- a/guava/src/com/google/common/base/package-info.java
+++ b/guava/src/com/google/common/base/package-info.java
@@ -15,7 +15,7 @@
/**
* Basic utility libraries and interfaces.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
*
Contents
diff --git a/guava/src/com/google/common/cache/package-info.java b/guava/src/com/google/common/cache/package-info.java
index 3399daca6b2c..4b5b0fe204b4 100644
--- a/guava/src/com/google/common/cache/package-info.java
+++ b/guava/src/com/google/common/cache/package-info.java
@@ -15,16 +15,14 @@
/**
* This package contains caching utilities.
*
- * The core interface used to represent caches is {@link com.google.common.cache.Cache}.
- * In-memory caches can be configured and created using {@link
- * com.google.common.cache.CacheBuilder}, with cache entries being loaded by {@link
- * com.google.common.cache.CacheLoader}. Statistics about cache performance are exposed using {@link
- * com.google.common.cache.CacheStats}.
+ *
The core interface used to represent caches is {@link Cache}. In-memory caches can be
+ * configured and created using {@link CacheBuilder}, with cache entries being loaded by {@link
+ * CacheLoader}. Statistics about cache performance are exposed using {@link CacheStats}.
*
*
See the Guava User Guide article on caches.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
* @author Charles Fry
diff --git a/guava/src/com/google/common/collect/package-info.java b/guava/src/com/google/common/collect/package-info.java
index d46e65fd3a13..853fb348ea26 100644
--- a/guava/src/com/google/common/collect/package-info.java
+++ b/guava/src/com/google/common/collect/package-info.java
@@ -17,45 +17,43 @@
/**
* This package contains generic collection interfaces and implementations, and other utilities for
* working with collections. It is a part of the open-source Guava library.
+ * href="https://github.com/google/guava">Guava library.
*
*
Collection Types
*
*
- * - {@link com.google.common.collect.BiMap}
+ *
- {@link BiMap}
*
- An extension of {@link java.util.Map} that guarantees the uniqueness of its values as well
* as that of its keys. This is sometimes called an "invertible map," since the restriction on
- * values enables it to support an {@linkplain com.google.common.collect.BiMap#inverse inverse
- * view} -- which is another instance of {@code BiMap}.
- *
- {@link com.google.common.collect.Multiset}
+ * values enables it to support an {@linkplain BiMap#inverse inverse view} -- which is another
+ * instance of {@code BiMap}.
+ *
- {@link Multiset}
*
- An extension of {@link java.util.Collection} that may contain duplicate values like a
* {@link java.util.List}, yet has order-independent equality like a {@link java.util.Set}.
* One typical use for a multiset is to represent a histogram.
- *
- {@link com.google.common.collect.Multimap}
+ *
- {@link Multimap}
*
- A new type, which is similar to {@link java.util.Map}, but may contain multiple entries
- * with the same key. Some behaviors of {@link com.google.common.collect.Multimap} are left
- * unspecified and are provided only by the subtypes mentioned below.
- *
- {@link com.google.common.collect.ListMultimap}
- *
- An extension of {@link com.google.common.collect.Multimap} which permits duplicate entries,
- * supports random access of values for a particular key, and has partially order-dependent
- * equality as defined by {@link com.google.common.collect.ListMultimap#equals(Object)}.
- * {@code ListMultimap} takes its name from the fact that the {@linkplain
- * com.google.common.collect.ListMultimap#get collection of values} associated with a given
- * key fulfills the {@link java.util.List} contract.
- *
- {@link com.google.common.collect.SetMultimap}
- *
- An extension of {@link com.google.common.collect.Multimap} which has order-independent
- * equality and does not allow duplicate entries; that is, while a key may appear twice in a
- * {@code SetMultimap}, each must map to a different value. {@code SetMultimap} takes its name
- * from the fact that the {@linkplain com.google.common.collect.SetMultimap#get collection of
- * values} associated with a given key fulfills the {@link java.util.Set} contract.
- *
- {@link com.google.common.collect.SortedSetMultimap}
- *
- An extension of {@link com.google.common.collect.SetMultimap} for which the {@linkplain
- * com.google.common.collect.SortedSetMultimap#get collection values} associated with a given
- * key is a {@link java.util.SortedSet}.
- *
- {@link com.google.common.collect.Table}
+ * with the same key. Some behaviors of {@link Multimap} are left unspecified and are provided
+ * only by the subtypes mentioned below.
+ *
- {@link ListMultimap}
+ *
- An extension of {@link Multimap} which permits duplicate entries, supports random access of
+ * values for a particular key, and has partially order-dependent equality as defined
+ * by {@link ListMultimap#equals(Object)}. {@code ListMultimap} takes its name from the fact
+ * that the {@linkplain ListMultimap#get collection of values} associated with a given key
+ * fulfills the {@link java.util.List} contract.
+ *
- {@link SetMultimap}
+ *
- An extension of {@link Multimap} which has order-independent equality and does not allow
+ * duplicate entries; that is, while a key may appear twice in a {@code SetMultimap}, each
+ * must map to a different value. {@code SetMultimap} takes its name from the fact that the
+ * {@linkplain SetMultimap#get collection of values} associated with a given key fulfills the
+ * {@link java.util.Set} contract.
+ *
- {@link SortedSetMultimap}
+ *
- An extension of {@link SetMultimap} for which the {@linkplain SortedSetMultimap#get
+ * collection values} associated with a given key is a {@link java.util.SortedSet}.
+ *
- {@link Table}
*
- A new type, which is similar to {@link java.util.Map}, but which indexes its values by an
* ordered pair of keys, a row key and column key.
- *
- {@link com.google.common.collect.ClassToInstanceMap}
+ *
- {@link ClassToInstanceMap}
*
- An extension of {@link java.util.Map} that associates a raw type with an instance of that
* type.
*
@@ -65,151 +63,150 @@
* of {@link java.util.List}
*
*
- * - {@link com.google.common.collect.ImmutableList}
+ *
- {@link ImmutableList}
*
*
* of {@link java.util.Set}
*
*
- * - {@link com.google.common.collect.ImmutableSet}
- *
- {@link com.google.common.collect.ImmutableSortedSet}
- *
- {@link com.google.common.collect.ContiguousSet} (see {@code Range})
+ *
- {@link ImmutableSet}
+ *
- {@link ImmutableSortedSet}
+ *
- {@link ContiguousSet} (see {@code Range})
*
*
* of {@link java.util.Map}
*
*
- * - {@link com.google.common.collect.ImmutableMap}
- *
- {@link com.google.common.collect.ImmutableSortedMap}
- *
- {@link com.google.common.collect.MapMaker}
+ *
- {@link ImmutableMap}
+ *
- {@link ImmutableSortedMap}
+ *
- {@link MapMaker}
*
*
- * of {@link com.google.common.collect.BiMap}
+ * of {@link BiMap}
*
*
- * - {@link com.google.common.collect.ImmutableBiMap}
- *
- {@link com.google.common.collect.HashBiMap}
- *
- {@link com.google.common.collect.EnumBiMap}
- *
- {@link com.google.common.collect.EnumHashBiMap}
+ *
- {@link ImmutableBiMap}
+ *
- {@link HashBiMap}
+ *
- {@link EnumBiMap}
+ *
- {@link EnumHashBiMap}
*
*
- * of {@link com.google.common.collect.Multiset}
+ * of {@link Multiset}
*
*
- * - {@link com.google.common.collect.ImmutableMultiset}
- *
- {@link com.google.common.collect.ImmutableSortedMultiset}
- *
- {@link com.google.common.collect.HashMultiset}
- *
- {@link com.google.common.collect.LinkedHashMultiset}
- *
- {@link com.google.common.collect.TreeMultiset}
- *
- {@link com.google.common.collect.EnumMultiset}
- *
- {@link com.google.common.collect.ConcurrentHashMultiset}
+ *
- {@link ImmutableMultiset}
+ *
- {@link ImmutableSortedMultiset}
+ *
- {@link HashMultiset}
+ *
- {@link LinkedHashMultiset}
+ *
- {@link TreeMultiset}
+ *
- {@link EnumMultiset}
+ *
- {@link ConcurrentHashMultiset}
*
*
- * of {@link com.google.common.collect.Multimap}
+ * of {@link Multimap}
*
*
- * - {@link com.google.common.collect.ImmutableMultimap}
- *
- {@link com.google.common.collect.ImmutableListMultimap}
- *
- {@link com.google.common.collect.ImmutableSetMultimap}
- *
- {@link com.google.common.collect.ArrayListMultimap}
- *
- {@link com.google.common.collect.HashMultimap}
- *
- {@link com.google.common.collect.TreeMultimap}
- *
- {@link com.google.common.collect.LinkedHashMultimap}
- *
- {@link com.google.common.collect.LinkedListMultimap}
+ *
- {@link ImmutableMultimap}
+ *
- {@link ImmutableListMultimap}
+ *
- {@link ImmutableSetMultimap}
+ *
- {@link ArrayListMultimap}
+ *
- {@link HashMultimap}
+ *
- {@link TreeMultimap}
+ *
- {@link LinkedHashMultimap}
+ *
- {@link LinkedListMultimap}
*
*
- * of {@link com.google.common.collect.Table}
+ * of {@link Table}
*
*
- * - {@link com.google.common.collect.ImmutableTable}
- *
- {@link com.google.common.collect.ArrayTable}
- *
- {@link com.google.common.collect.HashBasedTable}
- *
- {@link com.google.common.collect.TreeBasedTable}
+ *
- {@link ImmutableTable}
+ *
- {@link ArrayTable}
+ *
- {@link HashBasedTable}
+ *
- {@link TreeBasedTable}
*
*
- * of {@link com.google.common.collect.ClassToInstanceMap}
+ * of {@link ClassToInstanceMap}
*
*
- * - {@link com.google.common.collect.ImmutableClassToInstanceMap}
- *
- {@link com.google.common.collect.MutableClassToInstanceMap}
+ *
- {@link ImmutableClassToInstanceMap}
+ *
- {@link MutableClassToInstanceMap}
*
*
* Classes of static utility methods
*
*
- * - {@link com.google.common.collect.Collections2}
- *
- {@link com.google.common.collect.Iterators}
- *
- {@link com.google.common.collect.Iterables}
- *
- {@link com.google.common.collect.Lists}
- *
- {@link com.google.common.collect.Maps}
- *
- {@link com.google.common.collect.Queues}
- *
- {@link com.google.common.collect.Sets}
- *
- {@link com.google.common.collect.Multisets}
- *
- {@link com.google.common.collect.Multimaps}
- *
- {@link com.google.common.collect.Tables}
- *
- {@link com.google.common.collect.ObjectArrays}
+ *
- {@link Collections2}
+ *
- {@link Iterators}
+ *
- {@link Iterables}
+ *
- {@link Lists}
+ *
- {@link Maps}
+ *
- {@link Queues}
+ *
- {@link Sets}
+ *
- {@link Multisets}
+ *
- {@link Multimaps}
+ *
- {@link Tables}
+ *
- {@link ObjectArrays}
*
*
* Comparison
*
*
- * - {@link com.google.common.collect.Ordering}
- *
- {@link com.google.common.collect.ComparisonChain}
+ *
- {@link Ordering}
+ *
- {@link ComparisonChain}
*
*
* Abstract implementations
*
*
- * - {@link com.google.common.collect.AbstractIterator}
- *
- {@link com.google.common.collect.AbstractSequentialIterator}
- *
- {@link com.google.common.collect.ImmutableCollection}
- *
- {@link com.google.common.collect.UnmodifiableIterator}
- *
- {@link com.google.common.collect.UnmodifiableListIterator}
+ *
- {@link AbstractIterator}
+ *
- {@link AbstractSequentialIterator}
+ *
- {@link ImmutableCollection}
+ *
- {@link UnmodifiableIterator}
+ *
- {@link UnmodifiableListIterator}
*
*
* Ranges
*
*
- * - {@link com.google.common.collect.Range}
- *
- {@link com.google.common.collect.RangeMap}
- *
- {@link com.google.common.collect.DiscreteDomain}
- *
- {@link com.google.common.collect.ContiguousSet}
+ *
- {@link Range}
+ *
- {@link RangeMap}
+ *
- {@link DiscreteDomain}
+ *
- {@link ContiguousSet}
*
*
* Other
*
*
- * - {@link com.google.common.collect.Interner}, {@link com.google.common.collect.Interners}
- *
- {@link com.google.common.collect.MapDifference}, {@link
- * com.google.common.collect.SortedMapDifference}
- *
- {@link com.google.common.collect.MinMaxPriorityQueue}
- *
- {@link com.google.common.collect.PeekingIterator}
+ *
- {@link Interner}, {@link Interners}
+ *
- {@link MapDifference}, {@link SortedMapDifference}
+ *
- {@link MinMaxPriorityQueue}
+ *
- {@link PeekingIterator}
*
*
* Forwarding collections
*
*
- * - {@link com.google.common.collect.ForwardingCollection}
- *
- {@link com.google.common.collect.ForwardingConcurrentMap}
- *
- {@link com.google.common.collect.ForwardingIterator}
- *
- {@link com.google.common.collect.ForwardingList}
- *
- {@link com.google.common.collect.ForwardingListIterator}
- *
- {@link com.google.common.collect.ForwardingListMultimap}
- *
- {@link com.google.common.collect.ForwardingMap}
- *
- {@link com.google.common.collect.ForwardingMapEntry}
- *
- {@link com.google.common.collect.ForwardingMultimap}
- *
- {@link com.google.common.collect.ForwardingMultiset}
- *
- {@link com.google.common.collect.ForwardingNavigableMap}
- *
- {@link com.google.common.collect.ForwardingNavigableSet}
- *
- {@link com.google.common.collect.ForwardingObject}
- *
- {@link com.google.common.collect.ForwardingQueue}
- *
- {@link com.google.common.collect.ForwardingSet}
- *
- {@link com.google.common.collect.ForwardingSetMultimap}
- *
- {@link com.google.common.collect.ForwardingSortedMap}
- *
- {@link com.google.common.collect.ForwardingSortedMultiset}
- *
- {@link com.google.common.collect.ForwardingSortedSet}
- *
- {@link com.google.common.collect.ForwardingSortedSetMultimap}
- *
- {@link com.google.common.collect.ForwardingTable}
+ *
- {@link ForwardingCollection}
+ *
- {@link ForwardingConcurrentMap}
+ *
- {@link ForwardingIterator}
+ *
- {@link ForwardingList}
+ *
- {@link ForwardingListIterator}
+ *
- {@link ForwardingListMultimap}
+ *
- {@link ForwardingMap}
+ *
- {@link ForwardingMapEntry}
+ *
- {@link ForwardingMultimap}
+ *
- {@link ForwardingMultiset}
+ *
- {@link ForwardingNavigableMap}
+ *
- {@link ForwardingNavigableSet}
+ *
- {@link ForwardingObject}
+ *
- {@link ForwardingQueue}
+ *
- {@link ForwardingSet}
+ *
- {@link ForwardingSetMultimap}
+ *
- {@link ForwardingSortedMap}
+ *
- {@link ForwardingSortedMultiset}
+ *
- {@link ForwardingSortedSet}
+ *
- {@link ForwardingSortedSetMultimap}
+ *
- {@link ForwardingTable}
*
*/
@CheckReturnValue
diff --git a/guava/src/com/google/common/escape/package-info.java b/guava/src/com/google/common/escape/package-info.java
index 8cd29e6f85fb..4c525386e6f6 100644
--- a/guava/src/com/google/common/escape/package-info.java
+++ b/guava/src/com/google/common/escape/package-info.java
@@ -14,14 +14,14 @@
/**
* Interfaces, utilities, and simple implementations of escapers and encoders. The primary type is
- * {@link com.google.common.escape.Escaper}.
+ * {@link Escaper}.
*
* Additional escapers implementations are found in the applicable packages: {@link
* com.google.common.html.HtmlEscapers} in {@code com.google.common.html}, {@link
* com.google.common.xml.XmlEscapers} in {@code com.google.common.xml}, and {@link
* com.google.common.net.UrlEscapers} in {@code com.google.common.net}.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/guava/src/com/google/common/html/package-info.java b/guava/src/com/google/common/html/package-info.java
index f84d7f23d0ca..1a97bccd1ab1 100644
--- a/guava/src/com/google/common/html/package-info.java
+++ b/guava/src/com/google/common/html/package-info.java
@@ -17,7 +17,7 @@
* for
* HTML.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/guava/src/com/google/common/io/package-info.java b/guava/src/com/google/common/io/package-info.java
index f0666b26f4b2..14a6c5770d07 100644
--- a/guava/src/com/google/common/io/package-info.java
+++ b/guava/src/com/google/common/io/package-info.java
@@ -16,13 +16,12 @@
* This package contains utility methods and classes for working with Java I/O; for example input
* streams, output streams, readers, writers, and files.
*
- *
At the core of this package are the Source/Sink types: {@link com.google.common.io.ByteSource
- * ByteSource}, {@link com.google.common.io.CharSource CharSource}, {@link
- * com.google.common.io.ByteSink ByteSink} and {@link com.google.common.io.CharSink CharSink}. They
- * are factories for I/O streams that provide many convenience methods that handle both opening and
+ *
At the core of this package are the Source/Sink types: {@link ByteSource ByteSource}, {@link
+ * CharSource CharSource}, {@link ByteSink ByteSink} and {@link CharSink CharSink}. They are
+ * factories for I/O streams that provide many convenience methods that handle both opening and
* closing streams for you.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library. For more information on Sources and Sinks as well as other features of this package, see
* I/O Explained on the Guava wiki.
*
diff --git a/guava/src/com/google/common/math/package-info.java b/guava/src/com/google/common/math/package-info.java
index 0408246e7452..6c4b85f7fdf3 100644
--- a/guava/src/com/google/common/math/package-info.java
+++ b/guava/src/com/google/common/math/package-info.java
@@ -15,7 +15,7 @@
/**
* Arithmetic functions operating on primitive values and {@link java.math.BigInteger} instances.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
*
See the Guava User Guide article on This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
* @author Craig Berry
diff --git a/guava/src/com/google/common/primitives/package-info.java b/guava/src/com/google/common/primitives/package-info.java
index 9504fa79be1a..a74abd9d605b 100644
--- a/guava/src/com/google/common/primitives/package-info.java
+++ b/guava/src/com/google/common/primitives/package-info.java
@@ -16,7 +16,7 @@
* Static utilities for working with the eight primitive types and {@code void}, and value types for
* treating them as unsigned.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*
*
See the Guava User Guide article on General static utilities
*
*
- * - {@link com.google.common.primitives.Primitives}
+ *
- {@link Primitives}
*
*
* Per-type static utilities
*
*
- * - {@link com.google.common.primitives.Booleans}
- *
- {@link com.google.common.primitives.Bytes}
+ *
- {@link Booleans}
+ *
- {@link Bytes}
*
- * - {@link com.google.common.primitives.SignedBytes}
- *
- {@link com.google.common.primitives.UnsignedBytes}
+ *
- {@link SignedBytes}
+ *
- {@link UnsignedBytes}
*
- * - {@link com.google.common.primitives.Chars}
- *
- {@link com.google.common.primitives.Doubles}
- *
- {@link com.google.common.primitives.Floats}
- *
- {@link com.google.common.primitives.Ints}
+ *
- {@link Chars}
+ *
- {@link Doubles}
+ *
- {@link Floats}
+ *
- {@link Ints}
*
- * - {@link com.google.common.primitives.UnsignedInts}
+ *
- {@link UnsignedInts}
*
- * - {@link com.google.common.primitives.Longs}
+ *
- {@link Longs}
*
- * - {@link com.google.common.primitives.UnsignedLongs}
+ *
- {@link UnsignedLongs}
*
- * - {@link com.google.common.primitives.Shorts}
+ *
- {@link Shorts}
*
*
* Value types
*
*
- * - {@link com.google.common.primitives.UnsignedInteger}
- *
- {@link com.google.common.primitives.UnsignedLong}
+ *
- {@link UnsignedInteger}
+ *
- {@link UnsignedLong}
*
*/
@ParametersAreNonnullByDefault
diff --git a/guava/src/com/google/common/reflect/package-info.java b/guava/src/com/google/common/reflect/package-info.java
index 6b6047169c13..5875ccff5d2e 100644
--- a/guava/src/com/google/common/reflect/package-info.java
+++ b/guava/src/com/google/common/reflect/package-info.java
@@ -14,7 +14,7 @@
/**
* This package contains utilities to work with Java reflection. It is a part of the open-source Guava library.
+ * href="https://github.com/google/guava">Guava library.
*/
@CheckReturnValue
@ParametersAreNonnullByDefault
diff --git a/guava/src/com/google/common/util/concurrent/package-info.java b/guava/src/com/google/common/util/concurrent/package-info.java
index a2533c1fc8e9..dd7f9f372324 100644
--- a/guava/src/com/google/common/util/concurrent/package-info.java
+++ b/guava/src/com/google/common/util/concurrent/package-info.java
@@ -15,14 +15,12 @@
/**
* Concurrency utilities.
*
- *
Commonly used types include {@link com.google.common.util.concurrent.ListenableFuture} and
- * {@link com.google.common.util.concurrent.Service}.
+ *
Commonly used types include {@link ListenableFuture} and {@link Service}.
*
- *
Commonly used utilities include {@link com.google.common.util.concurrent.Futures}, {@link
- * com.google.common.util.concurrent.MoreExecutors}, and {@link
- * com.google.common.util.concurrent.ThreadFactoryBuilder}.
+ *
Commonly used utilities include {@link Futures}, {@link MoreExecutors}, and {@link
+ * ThreadFactoryBuilder}.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue
diff --git a/guava/src/com/google/common/xml/package-info.java b/guava/src/com/google/common/xml/package-info.java
index bd4c952162f3..8693276272ef 100644
--- a/guava/src/com/google/common/xml/package-info.java
+++ b/guava/src/com/google/common/xml/package-info.java
@@ -17,7 +17,7 @@
* for
* XML.
*
- *
This package is a part of the open-source Guava
+ *
This package is a part of the open-source Guava
* library.
*/
@CheckReturnValue