I was concentrating on different white spaces.

And it was right in front of me:)
This commit is contained in:
Perry Taylor
2013-10-30 21:39:35 -04:00
parent eac14ae72e
commit 46e9a57443

View File

@@ -14,17 +14,17 @@ namespace Octokit.Reactive
}
public ObservableGitHubClient(ProductHeaderValue productInformation, ICredentialStore credentialStore)
:this(new GitHubClient(productInformation, credentialStore))
: this(new GitHubClient(productInformation, credentialStore))
{
}
public ObservableGitHubClient(ProductHeaderValue productInformation, Uri baseAddress)
:this(new GitHubClient(productInformation, baseAddress))
{
: this(new GitHubClient(productInformation, baseAddress))
{
}
public ObservableGitHubClient(ProductHeaderValue productInformation, ICredentialStore credentialStore, Uri baseAddress)
:this(new GitHubClient(productInformation, credentialStore, baseAddress))
: this(new GitHubClient(productInformation, credentialStore, baseAddress))
{
}