Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Mono.Cecil.PE/ByteBuffer.cs')
-rw-r--r--Mono.Cecil.PE/ByteBuffer.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/Mono.Cecil.PE/ByteBuffer.cs b/Mono.Cecil.PE/ByteBuffer.cs
index c7ae7ae..4f32c09 100644
--- a/Mono.Cecil.PE/ByteBuffer.cs
+++ b/Mono.Cecil.PE/ByteBuffer.cs
@@ -52,12 +52,6 @@ namespace Mono.Cecil.PE {
this.length = this.buffer.Length;
}
- public void Reset (byte [] buffer)
- {
- this.buffer = buffer ?? Empty<byte>.Array;
- this.length = this.buffer.Length;
- }
-
public void Advance (int length)
{
position += length;