diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2013-07-11 00:18:48 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2013-07-11 00:18:48 +0200 |
commit | 58a5b6d0c6e265120bda38b8c39a9b7027fa1605 (patch) | |
tree | 5c6b4b4ce5322ec4bd64222601cb665abe561560 | |
parent | f45288e7c43ff1756c231988f7b4ae3e0296d070 (diff) | |
download | jgit-58a5b6d0c6e265120bda38b8c39a9b7027fa1605.tar.gz jgit-58a5b6d0c6e265120bda38b8c39a9b7027fa1605.zip |
Add missing @since tags
Change-Id: I6f672249d7ca014c63fb939cd0836689eb27ab90
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/TransferConfig.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/TransferConfig.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/TransferConfig.java index 1286718de2..3a08cd35df 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/TransferConfig.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/TransferConfig.java @@ -87,6 +87,7 @@ public class TransferConfig { /** * @return allow clients to request non-advertised tip SHA-1s? + * @since 3.1 */ public boolean isAllowTipSha1InWant() { return allowTipSha1InWant; @@ -94,6 +95,7 @@ public class TransferConfig { /** * @return {@link RefFilter} respecting configured hidden refs. + * @since 3.1 */ public RefFilter getRefFilter() { if (hideRefs.length == 0) |