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
///