diff --git a/Octokit.Reactive/Clients/IObservableUsersClient.cs b/Octokit.Reactive/Clients/IObservableUsersClient.cs
index e5125ca3..1a32ecd8 100644
--- a/Octokit.Reactive/Clients/IObservableUsersClient.cs
+++ b/Octokit.Reactive/Clients/IObservableUsersClient.cs
@@ -44,15 +44,6 @@ namespace Octokit.Reactive
///
IObservableUserEmailsClient Email { get; }
- ///
- /// A client for GitHub's User Keys API
- ///
- ///
- /// See the Keys API documentation for more information.
- ///
- [Obsolete("Ssh key information is now available under the GitSshKey property. This will be removed in a future update.")]
- IObservableUserKeysClient Keys { get; }
-
///
/// A client for GitHub's User Keys API
///
diff --git a/Octokit.Reactive/Clients/ObservableUsersClient.cs b/Octokit.Reactive/Clients/ObservableUsersClient.cs
index 79c6c9de..6466a2bf 100644
--- a/Octokit.Reactive/Clients/ObservableUsersClient.cs
+++ b/Octokit.Reactive/Clients/ObservableUsersClient.cs
@@ -16,9 +16,6 @@ namespace Octokit.Reactive
Followers = new ObservableFollowersClient(client);
Email = new ObservableUserEmailsClient(client);
-#pragma warning disable CS0618 // Type or member is obsolete
- Keys = new ObservableUserKeysClient(client);
-#pragma warning restore CS0618 // Type or member is obsolete
GitSshKey = new ObservableUserKeysClient(client);
GpgKey = new ObservableUserGpgKeysClient(client);
Administration = new ObservableUserAdministrationClient(client);
@@ -74,15 +71,6 @@ namespace Octokit.Reactive
///
public IObservableUserEmailsClient Email { get; private set; }
- ///
- /// A client for GitHub's User Keys API
- ///
- ///
- /// See the Keys API documentation for more information.
- ///
- [Obsolete("Ssh key information is now available under the GitSshKey property. This will be removed in a future update.")]
- public IObservableUserKeysClient Keys { get; private set; }
-
///
/// A client for GitHub's User Keys API
///
diff --git a/Octokit/Clients/IUsersClient.cs b/Octokit/Clients/IUsersClient.cs
index 73008554..41e5c4b7 100644
--- a/Octokit/Clients/IUsersClient.cs
+++ b/Octokit/Clients/IUsersClient.cs
@@ -20,15 +20,6 @@ namespace Octokit
///
IUserEmailsClient Email { get; }
- ///
- /// A client for GitHub's User Keys API
- ///
- ///
- /// See the Keys API documentation for more information.
- ///
- [Obsolete("Ssh key information is now available under the GitSshKey property. This will be removed in a future update.")]
- IUserKeysClient Keys { get; }
-
///
/// A client for GitHub's User Keys API
///
diff --git a/Octokit/Clients/UsersClient.cs b/Octokit/Clients/UsersClient.cs
index 3b12832b..fc07ea23 100644
--- a/Octokit/Clients/UsersClient.cs
+++ b/Octokit/Clients/UsersClient.cs
@@ -21,9 +21,6 @@ namespace Octokit
{
Email = new UserEmailsClient(apiConnection);
Followers = new FollowersClient(apiConnection);
-#pragma warning disable CS0618 // Type or member is obsolete
- Keys = new UserKeysClient(apiConnection);
-#pragma warning restore CS0618 // Type or member is obsolete
GitSshKey = new UserKeysClient(apiConnection);
GpgKey = new UserGpgKeysClient(apiConnection);
@@ -38,15 +35,6 @@ namespace Octokit
///
public IUserEmailsClient Email { get; private set; }
- ///
- /// A client for GitHub's User Keys API
- ///
- ///
- /// See the Keys API documentation for more information.
- ///
- [Obsolete("Ssh key information is now available under the GitSshKey property. This will be removed in a future update.")]
- public IUserKeysClient Keys { get; private set; }
-
///
/// A client for GitHub's User Keys API
///