Add missing @since tags for new API methods

Change-Id: I38f10d622c30f19d1154a4901477e844cb411707
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2013-04-07 23:17:02 +02:00
parent 41cba241d8
commit 2f93551e18
2 changed files with 3 additions and 0 deletions

View File

@ -638,6 +638,7 @@ private Result updateImpl(final RevWalk walk, final Store store)
* are checked explicitly.
*
* @param check
* @since 3.0
*/
public void setCheckConflicting(boolean check) {
checkConflicting = check;

View File

@ -379,6 +379,7 @@ public void setMaxDeltaDepth(int maxDeltaDepth) {
* @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 boolean getCutDeltaChains() {
*
* @param cut
* true to cut existing chains.
* @since 3.0
*/
public void setCutDeltaChains(boolean cut) {
cutDeltaChains = cut;