From 406817d5b2594f8c79dab4087c2fef811a8eff5b Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 18 Dec 2024 19:36:23 -0600 Subject: [PATCH] minor --- common.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/common.go b/common.go index 6065b8c..fb17679 100644 --- a/common.go +++ b/common.go @@ -1,7 +1,5 @@ package gitpb -import "go.wit.com/log" - func (repo *Repo) SetReadOnly(b bool) { repo.ReadOnly = b } @@ -11,7 +9,6 @@ func (repo *Repo) SetTargetVersion(target string) { } func (repo *Repo) SetMasterBranchName(s string) { - log.Info("gitpb.SetMaster() SET MASTER TO", s) repo.MasterBranchName = s }