diff --git a/Octokit/Helpers/ApiUrls.Authorizations.cs b/Octokit/Helpers/ApiUrls.Authorizations.cs index 19f53c44..4cae9842 100644 --- a/Octokit/Helpers/ApiUrls.Authorizations.cs +++ b/Octokit/Helpers/ApiUrls.Authorizations.cs @@ -34,21 +34,6 @@ namespace Octokit return "authorizations/clients/{0}".FormatUri(clientId); } - /// - /// Returns the that authorizations for a given client and fingerprint - /// - /// - /// The 20 character OAuth app client key for - /// which to create the token. - /// - /// A unique string to distinguish an authorization from others created - /// for the same client and user. - /// - public static Uri AuthorizationsForClient(string clientId, string fingerprint) - { - return "authorizations/clients/{0}/{1}".FormatUri(clientId, fingerprint); - } - public static Uri ApplicationAuthorization(string clientId) { return "applications/{0}/tokens".FormatUri(clientId);