From 91c2fce12b85e3c62a42786b17b2daddcac70d74 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 13 Jan 2025 10:35:59 -0500 Subject: [PATCH] Fix access level for 2 methods --- SabreTools.DatFiles/DatFile.Splitting.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SabreTools.DatFiles/DatFile.Splitting.cs b/SabreTools.DatFiles/DatFile.Splitting.cs index 3bec7236..7e61dac9 100644 --- a/SabreTools.DatFiles/DatFile.Splitting.cs +++ b/SabreTools.DatFiles/DatFile.Splitting.cs @@ -1026,7 +1026,7 @@ namespace SabreTools.DatFiles /// Applies to . /// Assumes items are bucketed by . /// - internal void RemoveBiosRomsFromChildImplDB(bool bios) + private void RemoveBiosRomsFromChildImplDB(bool bios) { // Loop through the romof tags List buckets = [.. ItemsDB.SortedKeys]; @@ -1129,7 +1129,7 @@ namespace SabreTools.DatFiles /// Applies to . /// Assumes items are bucketed by . /// - internal void RemoveRomsFromChildImplDB() + private void RemoveRomsFromChildImplDB() { List buckets = [.. ItemsDB.SortedKeys]; foreach (string bucket in buckets)