Remove unused class.

This commit is contained in:
Gert Driesen
2017-02-06 15:13:36 +01:00
parent ca10625a93
commit d57dbff9ee
2 changed files with 0 additions and 13 deletions
-1
View File
@@ -430,7 +430,6 @@
<SubType>Code</SubType>
</Compile>
<Compile Include="Sftp\SftpOpenAsyncResult.cs" />
<Compile Include="Sftp\SftpOpenDirAsyncResult.cs" />
<Compile Include="Sftp\SftpReadAsyncResult.cs" />
<Compile Include="Sftp\SftpRealPathAsyncResult.cs" />
<Compile Include="Sftp\SftpSession.cs">
@@ -1,12 +0,0 @@
using Renci.SshNet.Common;
using System;
namespace Renci.SshNet.Sftp
{
internal class SftpOpenDirAsyncResult : AsyncResult<byte[]>
{
public SftpOpenDirAsyncResult(AsyncCallback asyncCallback, object state) : base(asyncCallback, state)
{
}
}
}