mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
Redundant namespace qualifiers were removed.
This commit is contained in:
@@ -19,7 +19,7 @@ namespace Octokit.Reactive
|
||||
IObservableReleasesClient Release { get; }
|
||||
IObservableSshKeysClient SshKey { get; }
|
||||
IObservableUsersClient User { get; }
|
||||
[System.Obsolete("Notifications are now available under the Activities client. This will be removed in a future update.")]
|
||||
[Obsolete("Notifications are now available under the Activities client. This will be removed in a future update.")]
|
||||
IObservableNotificationsClient Notification { get; }
|
||||
IObservableGitDatabaseClient Git { get; }
|
||||
[Obsolete("Use Git instead")]
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace Octokit
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/comments/">Repository Comments API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
[System.Obsolete("Comment information is now available under the Comment property. This will be removed in a future update.")]
|
||||
[Obsolete("Comment information is now available under the Comment property. This will be removed in a future update.")]
|
||||
IRepositoryCommentsClient RepositoryComments { get; }
|
||||
|
||||
/// <summary>
|
||||
@@ -226,7 +226,7 @@ namespace Octokit
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/collaborators/">Collaborators API documentation</a> for more details
|
||||
/// </remarks>
|
||||
[System.Obsolete("Collaborator information is now available under the Collaborator property. This will be removed in a future update.")]
|
||||
[Obsolete("Collaborator information is now available under the Collaborator property. This will be removed in a future update.")]
|
||||
IRepoCollaboratorsClient RepoCollaborators { get; }
|
||||
|
||||
/// <summary>
|
||||
@@ -259,7 +259,7 @@ namespace Octokit
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/commits/">Commits API documentation</a> for more details
|
||||
///</remarks>
|
||||
[System.Obsolete("Commit information is now available under the Commit property. This will be removed in a future update.")]
|
||||
[Obsolete("Commit information is now available under the Commit property. This will be removed in a future update.")]
|
||||
IRepositoryCommitsClient Commits { get; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -348,7 +348,7 @@ namespace Octokit
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/collaborators/">Collaborators API documentation</a> for more details
|
||||
/// </remarks>
|
||||
[System.Obsolete("Collaborator information is now available under the Collaborator property. This will be removed in a future update.")]
|
||||
[Obsolete("Collaborator information is now available under the Collaborator property. This will be removed in a future update.")]
|
||||
public IRepoCollaboratorsClient RepoCollaborators { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -119,7 +119,7 @@ namespace Octokit
|
||||
/// <remarks>
|
||||
/// Refer to the API documentation for more information: https://developer.github.com/v3/activity/notifications/
|
||||
/// </remarks>
|
||||
[System.Obsolete("Notifications are now available under the Activities client. This will be removed in a future update.")]
|
||||
[Obsolete("Notifications are now available under the Activities client. This will be removed in a future update.")]
|
||||
INotificationsClient Notification { get; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -203,7 +203,7 @@ namespace Octokit
|
||||
[SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
||||
public RepositoryCollection Repos { get; set; }
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[SuppressMessage("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
public override IReadOnlyList<string> MergedQualifiers()
|
||||
{
|
||||
var parameters = new List<string>();
|
||||
|
||||
@@ -1762,7 +1762,7 @@ namespace Octokit
|
||||
if (typeof(IDictionary<,>).GetTypeInfo().IsAssignableFrom(type.GetTypeInfo()))
|
||||
return true;
|
||||
#else
|
||||
if (typeof(System.Collections.IDictionary).IsAssignableFrom(type))
|
||||
if (typeof(IDictionary).IsAssignableFrom(type))
|
||||
return true;
|
||||
#endif
|
||||
if (!GetTypeInfo(type).IsGenericType)
|
||||
@@ -2166,7 +2166,7 @@ namespace Octokit
|
||||
return _dictionary.GetEnumerator();
|
||||
}
|
||||
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
||||
IEnumerator IEnumerable.GetEnumerator()
|
||||
{
|
||||
return _dictionary.GetEnumerator();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user