From db10721386386eb10f94a37d252bfc5caa377c6b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 29 Aug 2025 10:04:52 -0400 Subject: [PATCH] Privatize --- .../UnshieldSharp/Reader.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/SabreTools.Serialization/UnshieldSharp/Reader.cs b/SabreTools.Serialization/UnshieldSharp/Reader.cs index 56967ee6..e1b39070 100644 --- a/SabreTools.Serialization/UnshieldSharp/Reader.cs +++ b/SabreTools.Serialization/UnshieldSharp/Reader.cs @@ -110,15 +110,6 @@ namespace UnshieldSharpInternal #region Reading - /// - /// Open the next volume based on the current index - /// - public bool OpenNextVolume(out ushort nextVolume) - { - nextVolume = (ushort)(_volumeId + 1); - return OpenVolume(nextVolume); - } - /// /// Read a certain number of bytes from the current volume /// @@ -158,6 +149,15 @@ namespace UnshieldSharpInternal return true; } + /// + /// Open the next volume based on the current index + /// + private bool OpenNextVolume(out ushort nextVolume) + { + nextVolume = (ushort)(_volumeId + 1); + return OpenVolume(nextVolume); + } + /// /// Open the volume at the inputted index ///