diff options
author | Jonathan Nieder <jrn@google.com> | 2016-05-04 15:01:47 -0700 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2016-05-04 15:04:55 -0700 |
commit | e89393ba3ee6b16b99a0afecd54521260ed6a66e (patch) | |
tree | 72fb30ce9b2547383491598814736f72ef9bd010 | |
parent | 73b3c9c1d86b4c261acf91013c1ce42a695c7c09 (diff) | |
download | jgit-e89393ba3ee6b16b99a0afecd54521260ed6a66e.tar.gz jgit-e89393ba3ee6b16b99a0afecd54521260ed6a66e.zip |
Make BaseReceivePack.setAtomic public
This makes atomic more consistent with other properties like
allowNonFastForwards.
Change-Id: Ie3b41f14ffba1d0b206ffecc697377417daa6973
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java index 8ed64ea823..b5f9e2f020 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java @@ -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; } |