Change modifier order.

This commit is contained in:
drieseng
2016-06-05 09:27:59 +02:00
parent 7411f16dca
commit 62100a08e2
+1 -1
View File
@@ -189,7 +189,7 @@ namespace Renci.SshNet.Common
/// Waits until the asynchronous operation completes, and then returns the value generated by the asynchronous operation.
/// </summary>
/// <returns>Invocation result</returns>
new public TResult EndInvoke()
public new TResult EndInvoke()
{
base.EndInvoke(); // Wait until operation has completed
return _result; // Return the result (if above didn't throw)