Fix whitespaces

This commit is contained in:
Perry Taylor
2013-10-30 21:34:17 -04:00
parent ff71007bf6
commit eac14ae72e
+2 -2
View File
@@ -14,7 +14,7 @@ namespace Octokit.Reactive
}
public ObservableGitHubClient(ProductHeaderValue productInformation, ICredentialStore credentialStore)
:this (new GitHubClient(productInformation, credentialStore))
:this(new GitHubClient(productInformation, credentialStore))
{
}
@@ -26,8 +26,8 @@ namespace Octokit.Reactive
public ObservableGitHubClient(ProductHeaderValue productInformation, ICredentialStore credentialStore, Uri baseAddress)
:this(new GitHubClient(productInformation, credentialStore, baseAddress))
{
}
public ObservableGitHubClient(IGitHubClient gitHubClient)
{
Ensure.ArgumentNotNull(gitHubClient, "githubClient");