Remove this. prefixes

This commit is contained in:
John Nye
2013-11-04 18:21:55 +00:00
parent 951b03dbbc
commit f59dde6f61
3 changed files with 5 additions and 5 deletions
@@ -4,7 +4,7 @@
{
public ObservableGitDatabaseClient(IGitHubClient client)
{
this.Tag = new ObservableTagsClient(client);
Tag = new ObservableTagsClient(client);
}
public IObservableTagsClient Tag { get; set; }
@@ -11,7 +11,7 @@ namespace Octokit.Reactive
{
Ensure.ArgumentNotNull(client, "client");
this._client = client.GitDatabase.Tag;
_client = client.GitDatabase.Tag;
}
public IObservable<GitTag> Get(string owner, string name, string reference)
@@ -20,7 +20,7 @@ namespace Octokit.Reactive
Ensure.ArgumentNotNullOrEmptyString(name, "name");
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
return this._client.Get(owner, name, reference).ToObservable();
return _client.Get(owner, name, reference).ToObservable();
}
public IObservable<GitTag> Create(string owner, string name, NewTag tag)
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
Ensure.ArgumentNotNullOrEmptyString(name, "name");
Ensure.ArgumentNotNull(tag, "tag");
return this._client.Create(owner, name, tag).ToObservable();
return _client.Create(owner, name, tag).ToObservable();
}
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
public GitDatabaseClient(IApiConnection apiConnection)
: base(apiConnection)
{
this.Tag = new TagsClient(apiConnection);
Tag = new TagsClient(apiConnection);
}
public ITagsClient Tag { get; set; }