Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit ab2dd86

Browse files
committed
Removed debug code.
1 parent 43a6982 commit ab2dd86

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/GitHub.App/ViewModels/PullRequestCreationViewModel.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ public PullRequestCreationViewModel(IRepositoryHost repositoryHost, ISimpleRepos
5858
x => x.SourceBranch,
5959
source => source.Value)
6060
.Where(_ => initialized)
61-
.Merge(initializationComplete.Select(_ => SourceBranch))
62-
.Do(x => System.Diagnostics.Debug.WriteLine("SourceBranch:" + x));
61+
.Merge(initializationComplete.Select(_ => SourceBranch));
6362

6463
BranchValidator = ReactivePropertyValidator.ForObservable(branchObs)
6564
.IfTrue(x => x == null, Resources.PullRequestSourceBranchDoesNotExist)

0 commit comments

Comments
 (0)