Fix wrong to string label

This commit is contained in:
Sebastian Sdorra
2020-08-12 14:17:21 +02:00
parent 4d533bf838
commit c622e6ff7a

View File

@@ -21,7 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package sonia.scm.repository.spi;
import com.google.common.base.MoreObjects;
@@ -135,7 +135,7 @@ public class MergeCommandRequest implements Validateable, Resetable, Serializabl
.add("targetBranch", targetBranch)
.add("author", author)
.add("mergeStrategy", mergeStrategy)
.add("signatureDisabled", sign)
.add("sign", sign)
.toString();
}
}