Skip to content

Commit

Permalink
(chocolateyGH-181) Remove IConsole comments
Browse files Browse the repository at this point in the history
They initially came from Microsoft .Net Framework, which casts a doubt on whether it can be contained in the source code. Removing it will avoid any uncertainty.
  • Loading branch information
christianrondeau committed Mar 30, 2015
1 parent af5191c commit d63564d
Showing 1 changed file with 3 additions and 29 deletions.
32 changes: 3 additions & 29 deletions src/chocolatey/infrastructure/adapters/IConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,13 @@ namespace chocolatey.infrastructure.adapters

// ReSharper disable InconsistentNaming

/// <summary>
/// Adapter for <see cref="System.Console"/>
/// </summary>
public interface IConsole
{
/// <summary>
/// Writes the specified string value to the standard output stream.
/// </summary>
/// <param name="value">The value to write. </param><exception cref="T:System.IO.IOException">An I/O error occurred. </exception><filterpriority>1</filterpriority>
void Write(string value);

/// <summary>
/// Reads the next line of characters from the standard input stream.
/// </summary>
/// <returns>
/// The next line of characters from the input stream, or null if no more lines are available.
/// </returns>
/// <exception cref="T:System.IO.IOException">
/// An I/O error occurred.
/// </exception>
/// <exception cref="T:System.OutOfMemoryException">
/// There is insufficient memory to allocate a buffer for the returned string.
/// </exception>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// The number of characters in the next line of characters is greater than <see cref="F:System.Int32.MaxValue" />.
/// </exception>
/// <filterpriority>1</filterpriority>
string ReadLine();

/// <summary>
/// Gets the standard error output stream.
/// </summary>
/// <returns>
/// A <see cref="T:System.IO.TextWriter" /> that represents the standard error output stream.
/// </returns>
/// <filterpriority>1</filterpriority>
TextWriter Error { get; }
}

Expand Down

0 comments on commit d63564d

Please sign in to comment.