Skip to content

Commit 32fdb09

Browse files
committed
Change links from google.github.io/guava to guava.dev, including making sure they're https.
The links work even now because they automatically redirect. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=315389274
1 parent 2f437b5 commit 32fdb09

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

value/userguide/builders-howto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ public abstract class Animal {
335335
```
336336

337337
[`java.util.Optional`]: https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html
338-
[`com.google.common.base.Optional`]: http://google.github.io/guava/releases/snapshot/api/docs/com/google/common/base/Optional.html
338+
[`com.google.common.base.Optional`]: https://guava.dev/releases/snapshot/api/docs/com/google/common/base/Optional.html
339339
[`OptionalDouble`]: https://docs.oracle.com/javase/8/docs/api/java/util/OptionalDouble.html
340340
[`OptionalInt`]: https://docs.oracle.com/javase/8/docs/api/java/util/OptionalInt.html
341341
[`OptionalLong`]: https://docs.oracle.com/javase/8/docs/api/java/util/OptionalLong.html

value/userguide/howto.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,9 @@ might be mutated and the other not.
325325

326326
AutoValue intentionally does not provide this feature. It is better for you to
327327
roll your own comparison logic using the new methods added to
328-
[`Comparator`](https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html) in Java 8,
329-
or [`ComparisonChain`](http://google.github.io/guava/releases/snapshot/api/docs/com/google/common/collect/ComparisonChain.html)
328+
[`Comparator`](https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html)
329+
in Java 8, or
330+
[`ComparisonChain`](https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ComparisonChain.html)
330331
from [Guava](http://github.com/google/guava).
331332

332333
Since these mechanisms are easy to use, require very little code, and give you

0 commit comments

Comments
 (0)