Make BaseReceivePack.setAtomic public

This makes atomic more consistent with other properties like
allowNonFastForwards.

Change-Id: Ie3b41f14ffba1d0b206ffecc697377417daa6973
This commit is contained in:
Jonathan Nieder 2016-05-04 15:01:47 -07:00
parent 73b3c9c1d8
commit e89393ba3e
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ public boolean isAtomic() {
* transaction.
* @since 4.4
*/
protected void setAtomic(boolean atomic) {
public void setAtomic(boolean atomic) {
this.atomic = atomic;
}