aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2024-12-25 01:26:46 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2024-12-25 13:59:12 +0100
commitd32a770f144d3b8a87eeb811e4c8987ae9145966 (patch)
tree46578352b5ece928401ed13383b3cef17685cca9 /org.eclipse.jgit
parentf031b33289ea4596e283209decbe70d8d4c809b4 (diff)
downloadjgit-d32a770f144d3b8a87eeb811e4c8987ae9145966.tar.gz
jgit-d32a770f144d3b8a87eeb811e4c8987ae9145966.zip
SystemReader: add version when annotated methods became deprecated
Change-Id: I2a4e8c18378c1bcbf01c12a79d31cb5a2a050e97
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/SystemReader.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/SystemReader.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/SystemReader.java
index 55cc878e02..22b82b3610 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/util/SystemReader.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/SystemReader.java
@@ -523,7 +523,7 @@ public abstract class SystemReader {
*
* @deprecated Use {@link #now()}
*/
- @Deprecated
+ @Deprecated(since = "7.1")
public abstract long getCurrentTime();
/**
@@ -569,7 +569,7 @@ public abstract class SystemReader {
*
* @deprecated Use {@link #getTimeZoneAt(Instant)} instead.
*/
- @Deprecated
+ @Deprecated(since = "7.1")
public abstract int getTimezone(long when);
/**
@@ -592,7 +592,7 @@ public abstract class SystemReader {
*
* @deprecated Use {@link #getTimeZoneId()}
*/
- @Deprecated
+ @Deprecated(since = "7.1")
public TimeZone getTimeZone() {
return TimeZone.getDefault();
}