From 1fd69f101f1737137e7c636a720b655540f0cb53 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 3 Oct 2024 13:02:23 -0400 Subject: [PATCH] Remove last two this qualifiers --- Test/Extractor.cs | 2 +- Test/Printer.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/Extractor.cs b/Test/Extractor.cs index 652e6d63..08d3b4c6 100644 --- a/Test/Extractor.cs +++ b/Test/Extractor.cs @@ -43,7 +43,7 @@ namespace Test /// Enable including debug information public Extractor(bool includeDebug) { - this._options = new BinaryObjectScanner.Options + _options = new BinaryObjectScanner.Options { IncludeDebug = includeDebug, }; diff --git a/Test/Printer.cs b/Test/Printer.cs index 465297a4..d13484b3 100644 --- a/Test/Printer.cs +++ b/Test/Printer.cs @@ -29,7 +29,7 @@ namespace Test /// Enable including debug information public Printer(bool includeDebug) { - this._options = new BinaryObjectScanner.Options + _options = new BinaryObjectScanner.Options { IncludeDebug = includeDebug, };