Skip to content

Commit 62100a0

Browse files
committed
Change modifier order.
1 parent 7411f16 commit 62100a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Renci.SshNet/Common/AsyncResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public void SetAsCompleted(TResult result, Boolean completedSynchronously)
189189
/// Waits until the asynchronous operation completes, and then returns the value generated by the asynchronous operation.
190190
/// </summary>
191191
/// <returns>Invocation result</returns>
192-
new public TResult EndInvoke()
192+
public new TResult EndInvoke()
193193
{
194194
base.EndInvoke(); // Wait until operation has completed
195195
return _result; // Return the result (if above didn't throw)

0 commit comments

Comments
 (0)