]> source.dussan.org Git - jgit.git/commitdiff
Make BaseReceivePack.setAtomic public 09/72109/1
authorJonathan Nieder <jrn@google.com>
Wed, 4 May 2016 22:01:47 +0000 (15:01 -0700)
committerJonathan Nieder <jrn@google.com>
Wed, 4 May 2016 22:04:55 +0000 (15:04 -0700)
This makes atomic more consistent with other properties like
allowNonFastForwards.

Change-Id: Ie3b41f14ffba1d0b206ffecc697377417daa6973

org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java

index 8ed64ea823e7b9c0e9040cdc1f502c7be91f5567..b5f9e2f02039d43f5f4b0551c89b38ef1e729266 100644 (file)
@@ -628,7 +628,7 @@ public abstract class BaseReceivePack {
         *            transaction.
         * @since 4.4
         */
-       protected void setAtomic(boolean atomic) {
+       public void setAtomic(boolean atomic) {
                this.atomic = atomic;
        }