Skip to content

Commit ab03e9d

Browse files
committed
Remove unnecessary using statements
1 parent 4e071b3 commit ab03e9d

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/Zip/Compression/Streams/InflaterInputStream.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@
4747
using System.Security.Cryptography;
4848
#endif
4949

50-
using ICSharpCode.SharpZipLib.Zip.Compression;
51-
using ICSharpCode.SharpZipLib.Checksums;
52-
5350
namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
5451
{
5552

@@ -246,7 +243,7 @@ public int ReadClearTextBuffer(byte[] outBuffer, int offset, int length)
246243
}
247244

248245
int toCopy = Math.Min(currentLength, available);
249-
System.Array.Copy(clearText, clearTextLength - (int)available, outBuffer, currentOffset, toCopy);
246+
Array.Copy(clearText, clearTextLength - (int)available, outBuffer, currentOffset, toCopy);
250247
currentOffset += toCopy;
251248
currentLength -= toCopy;
252249
available -= toCopy;
@@ -698,6 +695,7 @@ public override int Read(byte[] buffer, int offset, int count)
698695
return count - remainingBytes;
699696
}
700697
#endregion
698+
701699
#region Instance Fields
702700
/// <summary>
703701
/// Decompressor for this stream

0 commit comments

Comments
 (0)