From ccf144ae74bf3c5988fda930fcbca60addfe8358 Mon Sep 17 00:00:00 2001 From: "aedampir@gmail.com" Date: Tue, 12 Jul 2016 08:58:08 +0700 Subject: [PATCH] removed tags --- Octokit.Reactive/Clients/IObservableTagsClient.cs | 4 ---- Octokit.Reactive/Clients/ObservableTagsClient.cs | 4 ---- Octokit/Clients/ITagsClient.cs | 4 ---- Octokit/Clients/TagsClient.cs | 4 ---- 4 files changed, 16 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableTagsClient.cs b/Octokit.Reactive/Clients/IObservableTagsClient.cs index bc7e4806..dbe396e3 100644 --- a/Octokit.Reactive/Clients/IObservableTagsClient.cs +++ b/Octokit.Reactive/Clients/IObservableTagsClient.cs @@ -20,7 +20,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Tha sha reference of the tag - /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(string owner, string name, string reference); @@ -33,7 +32,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// Tha sha reference of the tag - /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(int repositoryId, string reference); @@ -47,7 +45,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The tag to create - /// IObservable Create(string owner, string name, NewTag tag); /// @@ -58,7 +55,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The tag to create - /// IObservable Create(int repositoryId, NewTag tag); } } diff --git a/Octokit.Reactive/Clients/ObservableTagsClient.cs b/Octokit.Reactive/Clients/ObservableTagsClient.cs index 59ddca24..324c0a11 100644 --- a/Octokit.Reactive/Clients/ObservableTagsClient.cs +++ b/Octokit.Reactive/Clients/ObservableTagsClient.cs @@ -29,7 +29,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Tha sha reference of the tag - /// public IObservable Get(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -47,7 +46,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// Tha sha reference of the tag - /// public IObservable Get(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -64,7 +62,6 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The tag to create - /// public IObservable Create(string owner, string name, NewTag tag) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -82,7 +79,6 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The tag to create - /// public IObservable Create(int repositoryId, NewTag tag) { Ensure.ArgumentNotNull(tag, "tag"); diff --git a/Octokit/Clients/ITagsClient.cs b/Octokit/Clients/ITagsClient.cs index 8fdd3eec..fb6cff92 100644 --- a/Octokit/Clients/ITagsClient.cs +++ b/Octokit/Clients/ITagsClient.cs @@ -20,7 +20,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// Tha sha reference of the tag - /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] Task Get(string owner, string name, string reference); @@ -33,7 +32,6 @@ namespace Octokit /// /// The ID of the repository /// Tha sha reference of the tag - /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] Task Get(int repositoryId, string reference); @@ -47,7 +45,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The tag to create - /// Task Create(string owner, string name, NewTag tag); /// @@ -58,7 +55,6 @@ namespace Octokit /// /// The ID of the repository /// The tag to create - /// Task Create(int repositoryId, NewTag tag); } } \ No newline at end of file diff --git a/Octokit/Clients/TagsClient.cs b/Octokit/Clients/TagsClient.cs index 491379e9..24aa5537 100644 --- a/Octokit/Clients/TagsClient.cs +++ b/Octokit/Clients/TagsClient.cs @@ -28,7 +28,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// Tha sha reference of the tag - /// public Task Get(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -46,7 +45,6 @@ namespace Octokit /// /// The ID of the repository /// Tha sha reference of the tag - /// public Task Get(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -63,7 +61,6 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The tag to create - /// public Task Create(string owner, string name, NewTag tag) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -81,7 +78,6 @@ namespace Octokit /// /// The ID of the repository /// The tag to create - /// public Task Create(int repositoryId, NewTag tag) { Ensure.ArgumentNotNull(tag, "tag");