File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public interface ILibPcapLiveDevice : ILiveDevice
4848 /// </summary>
4949 /// <param name="device">The original device</param>
5050 /// <returns>The cloned device</returns>
51- ILibPcapLiveDevice Clone ( ILibPcapLiveDevice device ) ;
51+ ILibPcapLiveDevice Clone ( ) ;
5252
5353
5454 /// <summary>
Original file line number Diff line number Diff line change 77using System ;
88using System . Collections . ObjectModel ;
99using System . Runtime . InteropServices ;
10- using System . Text ;
1110
1211namespace SharpPcap . LibPcap
1312{
@@ -34,9 +33,9 @@ protected LibPcapLiveDevice()
3433 }
3534
3635 /// <inheritdoc/>
37- public ILibPcapLiveDevice Clone ( ILibPcapLiveDevice device )
36+ public ILibPcapLiveDevice Clone ( )
3837 {
39- return new LibPcapLiveDevice ( device . Interface ) ;
38+ return new LibPcapLiveDevice ( Interface ) ;
4039 }
4140
4241 /// <summary>
You can’t perform that action at this time.
0 commit comments