diff options
author | Thomas Wolf <twolf@apache.org> | 2024-08-20 22:40:10 +0200 |
---|---|---|
committer | Thomas Wolf <twolf@apache.org> | 2024-08-21 16:57:43 +0200 |
commit | 81067f18e6ee9ac36602926ac0e47945a18e8e3c (patch) | |
tree | fff4435b47d910838fad6588bff0dd9a0a431eb1 | |
parent | 888cd56583b23b88f714ac3f0596e23c690c1a74 (diff) | |
download | jgit-81067f18e6ee9ac36602926ac0e47945a18e8e3c.tar.gz jgit-81067f18e6ee9ac36602926ac0e47945a18e8e3c.zip |
GpgConfig: Add missing @since
Change-Id: Ie56e7d8f2defe10a87565056a1763288d5b1e1a6
Signed-off-by: Thomas Wolf <twolf@apache.org>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/GpgConfig.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/GpgConfig.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/GpgConfig.java index 4b0c07983f..f5064df061 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/GpgConfig.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/GpgConfig.java @@ -25,7 +25,11 @@ public class GpgConfig { OPENPGP("openpgp"), //$NON-NLS-1$ /** Value for x509 */ X509("x509"), //$NON-NLS-1$ - /** Value for ssh */ + /** + * Value for ssh. + * + * @since 7.0 + */ SSH("ssh"); //$NON-NLS-1$ private final String configValue; |