mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 18:35:35 +00:00
Remove this. prefixes
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,7 +5,7 @@
|
||||
public GitDatabaseClient(IApiConnection apiConnection)
|
||||
: base(apiConnection)
|
||||
{
|
||||
this.Tag = new TagsClient(apiConnection);
|
||||
Tag = new TagsClient(apiConnection);
|
||||
}
|
||||
|
||||
public ITagsClient Tag { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user