Skip to content

Commit af0408b

Browse files
committed
Removed unneded string format
1 parent 8ff3e26 commit af0408b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitVersionCore/BuildServers/GitHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ static void CreateFakeBranchPointingAtThePullRequestTip(Repository repo, Authent
176176
GetRemoteTipsUsingUsernamePasswordCredentials(repo, remote, authentication.Username, authentication.Password))
177177
.ToList();
178178

179-
Logger.WriteInfo(string.Format("Remote Refs:\r\n" + string.Join(Environment.NewLine, remoteTips.Select(r => r.CanonicalName))));
179+
Logger.WriteInfo("Remote Refs:\r\n" + string.Join(Environment.NewLine, remoteTips.Select(r => r.CanonicalName)));
180180

181181
var headTipSha = repo.Head.Tip.Sha;
182182

0 commit comments

Comments
 (0)