diff options
author | Ivan Frade <ifrade@google.com> | 2024-11-20 11:18:46 -0800 |
---|---|---|
committer | Ivan Frade <ifrade@google.com> | 2024-11-20 11:21:09 -0800 |
commit | f072d2ec7b1fe21d403c93f8c3dac7fc9e9e526a (patch) | |
tree | bdc9a83db0b31e90f44480a3673254691839c6a8 /org.eclipse.jgit/src/org/eclipse/jgit/lib/PersonIdent.java | |
parent | b1d6eef41947537bb4a8428b17a5f872e66660a4 (diff) | |
download | jgit-f072d2ec7b1fe21d403c93f8c3dac7fc9e9e526a.tar.gz jgit-f072d2ec7b1fe21d403c93f8c3dac7fc9e9e526a.zip |
PersonIdent: Revert @since of #getZoneId
In [1], the @since tag of #getZoneId was updated to 7.1 by
mistake. The implementation of the method is different but the API
hasn't changed.
Revert the tag to 6.1, when the method was introduced.
[1] https://gerrithub.io/c/eclipse-jgit/jgit/+/1204142/9/org.eclipse.jgit/src/org/eclipse/jgit/lib/PersonIdent.java
Change-Id: If71d763ac28d4ec02bfebb1e65f56227f44e027d
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/PersonIdent.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/PersonIdent.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/PersonIdent.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/PersonIdent.java index a59dde7083..600fec42ca 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/PersonIdent.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/PersonIdent.java @@ -408,7 +408,7 @@ public class PersonIdent implements Serializable { * Get the time zone id * * @return the time zone id - * @since 7.1 + * @since 6.1 */ public ZoneId getZoneId() { return tzOffset; @@ -496,4 +496,3 @@ public class PersonIdent implements Serializable { return r.toString(); } } - |