Skip to content

Commit

Permalink
Fix timestamp and comments.
Browse files Browse the repository at this point in the history
The timestamp is showing up in the generated Javadoc, so we might as well make it match the current year.

RELNOTES=n/a
PiperOrigin-RevId: 548706743
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Jul 17, 2023
1 parent a9c2970 commit 7645ffc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
[![Build Status](https://github.com/google/guava/workflows/CI/badge.svg?branch=master)](https://github.com/google/guava/actions)
[![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/7197/badge)](https://bestpractices.coreinfrastructure.org/projects/7197)

<!-- LINT.IfChange -->


Guava is a set of core Java libraries from Google that includes new collection
types (such as multimap and multiset), immutable collections, a graph library,
and utilities for concurrency, I/O, hashing, primitives, strings, and more! It
is widely used on most Java projects within Google, and widely used by many
other companies as well.

<!-- LINT.ThenChange(overview.html) -->


Guava comes in two flavors:

Expand Down
2 changes: 1 addition & 1 deletion android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!-- Empty for all JDKs but 9-12 -->
<maven-javadoc-plugin.additionalJOptions></maven-javadoc-plugin.additionalJOptions>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<project.build.outputTimestamp>1980-02-01T00:00:00Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2023-02-01T00:00:00Z</project.build.outputTimestamp>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<test.add.opens></test.add.opens>
<module.status>integration</module.status>
Expand Down
4 changes: 2 additions & 2 deletions guava/src/com/google/common/eventbus/EventBus.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

/**
* Dispatches events to listeners, and provides ways for listeners to register themselves.
* <!-- LINT.IfChange(avoid) -->
*
* <h2>Avoid EventBus</h2>
*
Expand Down Expand Up @@ -83,7 +83,7 @@
* to <a href="https://github.com/google/guava/issues/3311">more verbose</a>.
* </ul>
*
* <!-- LINT.ThenChange(README.md:avoid) -->
*
* <h2>EventBus Summary</h2>
*
Expand Down
4 changes: 2 additions & 2 deletions overview.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<body>
<!-- LINT.IfChange -->

Guava is a set of core Java libraries from Google that includes new collection
types (such as multimap and multiset), immutable collections, a graph library,
and utilities for concurrency, I/O, hashing, primitives, strings, and more! It
is widely used on most Java projects within Google, and widely used by many
other companies as well.
<!-- LINT.ThenChange(README.md) -->


<p>For more information, see <a href="https://guava.dev/">guava.dev</a>.
</body>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!-- Empty for all JDKs but 9-12 -->
<maven-javadoc-plugin.additionalJOptions></maven-javadoc-plugin.additionalJOptions>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<project.build.outputTimestamp>1980-02-01T00:00:00Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2023-02-01T00:00:00Z</project.build.outputTimestamp>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<test.add.opens></test.add.opens>
<module.status>integration</module.status>
Expand Down

0 comments on commit 7645ffc

Please sign in to comment.