Skip to content

Commit

Permalink
Fix errors reported by StyleCop Analyzers (#2555)
Browse files Browse the repository at this point in the history
  • Loading branch information
sharwell committed Sep 2, 2020
1 parent ddda590 commit deb218e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Expand Up @@ -11,28 +11,28 @@ namespace Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces
public class CommunicationException : Exception
{
/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class.
/// Initializes a new instance of the <see cref="CommunicationException" /> class.
/// </summary>
public CommunicationException()
{
}

/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class with provided
/// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
/// message.
/// </summary>
/// <param Name="message">Message describing the error.</param>
/// <param name="message">Message describing the error.</param>
public CommunicationException(string message)
: base(message)
{
}

/// <summary>
/// Initializes a new instance of <see cref="CommunicationException" /> class with provided
/// Initializes a new instance of the <see cref="CommunicationException" /> class with provided
/// message and inner exception.
/// </summary>
/// <param Name="message">Message describing the error.</param>
/// <param Name="inner">Inner exception.</param>
/// <param name="message">Message describing the error.</param>
/// <param name="inner">Inner exception.</param>
public CommunicationException(string message, Exception inner)
: base(message, inner)
{
Expand Down
Expand Up @@ -9,17 +9,17 @@ namespace Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.Interfaces
public interface IEnvironment
{
/// <summary>
/// Operating System architecture.
/// Gets the Operating System architecture.
/// </summary>
PlatformArchitecture Architecture { get; }

/// <summary>
/// Operating System name.
/// Gets the Operating System name.
/// </summary>
PlatformOperatingSystem OperatingSystem { get; }

/// <summary>
/// Operating System Version
/// Gets the Operating System Version
/// </summary>
string OperatingSystemVersion { get; }

Expand Down

0 comments on commit deb218e

Please sign in to comment.