diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2013-04-07 23:17:02 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2013-04-07 23:22:48 +0200 |
commit | 2f93551e186001a4ada38c62a37b3e3f69a72120 (patch) | |
tree | da062cb25a13e7ad24b2bf0ab6ddf903283b3157 /org.eclipse.jgit | |
parent | 41cba241d830ef8fd9cb453c542fd56b53e8eb02 (diff) | |
download | jgit-2f93551e186001a4ada38c62a37b3e3f69a72120.tar.gz jgit-2f93551e186001a4ada38c62a37b3e3f69a72120.zip |
Add missing @since tags for new API methods
Change-Id: I38f10d622c30f19d1154a4901477e844cb411707
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/RefUpdate.java | 1 | ||||
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefUpdate.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefUpdate.java index 56ec7af89b..9ef1722d7e 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefUpdate.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefUpdate.java @@ -638,6 +638,7 @@ public abstract class RefUpdate { * are checked explicitly. * * @param check + * @since 3.0 */ public void setCheckConflicting(boolean check) { checkConflicting = check; diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java index c1cda39de7..e3219535c2 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java @@ -379,6 +379,7 @@ public class PackConfig { * @return true if existing delta chains should be cut at * {@link #getMaxDeltaDepth()}. Default is false, allowing existing * chains to be of any length. + * @since 3.0 */ public boolean getCutDeltaChains() { return cutDeltaChains; @@ -395,6 +396,7 @@ public class PackConfig { * * @param cut * true to cut existing chains. + * @since 3.0 */ public void setCutDeltaChains(boolean cut) { cutDeltaChains = cut; |