From 363b353d8851fd3743e1f5ed320ab1979b7f1306 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 24 Feb 2017 12:38:40 -0800 Subject: [PATCH] [DatFile] Inline var declarations --- SabreTools.Helper/Dats/Partials/DatFile.Rebuild.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/SabreTools.Helper/Dats/Partials/DatFile.Rebuild.cs b/SabreTools.Helper/Dats/Partials/DatFile.Rebuild.cs index 3b928004..8bf58555 100644 --- a/SabreTools.Helper/Dats/Partials/DatFile.Rebuild.cs +++ b/SabreTools.Helper/Dats/Partials/DatFile.Rebuild.cs @@ -383,10 +383,8 @@ namespace SabreTools.Helper.Dats bool usedExternally = false; bool usedInternally = false; - // Get the required scanning level for the file - bool shouldExternalProcess = false; - bool shouldInternalProcess = false; - ArchiveTools.GetInternalExternalProcess(file, archiveScanLevel, logger, out shouldExternalProcess, out shouldInternalProcess); + // Get the required scanning level for the file + ArchiveTools.GetInternalExternalProcess(file, archiveScanLevel, logger, out bool shouldExternalProcess, out bool shouldInternalProcess); // If we're supposed to scan the file externally if (shouldExternalProcess)