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}

* * * *

of {@link java.util.Set}

* * * *

of {@link java.util.Map}

* * * - *

of {@link com.google.common.collect.BiMap}

+ *

of {@link BiMap}

* * * - *

of {@link com.google.common.collect.Multiset}

+ *

of {@link Multiset}

* * * - *

of {@link com.google.common.collect.Multimap}

+ *

of {@link Multimap}

* * * - *

of {@link com.google.common.collect.Table}

+ *

of {@link Table}

* * * - *

of {@link com.google.common.collect.ClassToInstanceMap}

+ *

of {@link ClassToInstanceMap}

* * * *

Classes of static utility methods

* * * *

Comparison

* * * *

Abstract implementations

* * * *

Ranges

* * * *

Other

* * * *

Forwarding collections

* * */ @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 * *

* *

Per-type static utilities

* * * *

Value types

* * */ @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}

* * * *

of {@link java.util.Set}

* * * *

of {@link java.util.Map}

* * * - *

of {@link com.google.common.collect.BiMap}

+ *

of {@link BiMap}

* * * - *

of {@link com.google.common.collect.Multiset}

+ *

of {@link Multiset}

* * * - *

of {@link com.google.common.collect.Multimap}

+ *

of {@link Multimap}

* * * - *

of {@link com.google.common.collect.Table}

+ *

of {@link Table}

* * * - *

of {@link com.google.common.collect.ClassToInstanceMap}

+ *

of {@link ClassToInstanceMap}

* * * *

Classes of static utility methods

* * * *

Comparison

* * * *

Abstract implementations

* * * *

Ranges

* * * *

Other

* * * *

Forwarding collections

* * */ @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 * *

* *

Per-type static utilities

* * * *

Value types

* * */ @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