diff --git a/Octokit.Reactive/Clients/IObservableTeamsClient.cs b/Octokit.Reactive/Clients/IObservableTeamsClient.cs
index 937ef02c..3ccf4106 100644
--- a/Octokit.Reactive/Clients/IObservableTeamsClient.cs
+++ b/Octokit.Reactive/Clients/IObservableTeamsClient.cs
@@ -109,16 +109,6 @@ namespace Octokit.Reactive
///
IObservable RemoveRepository(int id, string organization, string repoName);
- ///
- /// Returns all (ies) associated with the given team.
- ///
- /// The team identifier
- ///
- /// See the API documentation for more information.
- ///
- /// A list of the team's (ies).
- IObservable GetRepositories(int id);
-
///
/// Adds a to a .
///
diff --git a/Octokit.Reactive/Clients/ObservableTeamsClient.cs b/Octokit.Reactive/Clients/ObservableTeamsClient.cs
index 161968a8..3ff5c68b 100644
--- a/Octokit.Reactive/Clients/ObservableTeamsClient.cs
+++ b/Octokit.Reactive/Clients/ObservableTeamsClient.cs
@@ -146,19 +146,6 @@ namespace Octokit.Reactive
return _connection.GetAndFlattenAllPages(ApiUrls.TeamRepositories(id));
}
- ///
- /// Returns all (ies) associated with the given team.
- ///
- /// The team identifier
- ///
- /// See the API documentation for more information.
- ///
- /// A list of the team's (ies).
- public IObservable GetRepositories(int id)
- {
- return _connection.GetAndFlattenAllPages(ApiUrls.TeamRepositories(id));
- }
-
///
/// Adds a to a .
///