diff --git a/Nuclex.Support (Xbox 360).csproj b/Nuclex.Support (Xbox 360).csproj index 2482a12..9b9788f 100644 --- a/Nuclex.Support (Xbox 360).csproj +++ b/Nuclex.Support (Xbox 360).csproj @@ -118,8 +118,8 @@ ReverseComparer.cs - - + + RingMemoryStream.cs diff --git a/Nuclex.Support.csproj b/Nuclex.Support.csproj index 53ec96c..1095550 100644 --- a/Nuclex.Support.csproj +++ b/Nuclex.Support.csproj @@ -100,8 +100,8 @@ ReverseComparer.cs - - + + RingMemoryStream.cs diff --git a/Source/Collections/RingMemoryStream.Test.cs b/Source/IO/RingMemoryStream.Test.cs similarity index 96% rename from Source/Collections/RingMemoryStream.Test.cs rename to Source/IO/RingMemoryStream.Test.cs index 0ffbccc..d68bed0 100644 --- a/Source/Collections/RingMemoryStream.Test.cs +++ b/Source/IO/RingMemoryStream.Test.cs @@ -25,7 +25,7 @@ using System.IO; using NUnit.Framework; -namespace Nuclex.Support.Collections { +namespace Nuclex.Support.IO { /// Unit Test for the ring buffer class [TestFixture] @@ -312,6 +312,6 @@ namespace Nuclex.Support.Collections { } -} // namespace Nuclex.Support.Collections +} // namespace Nuclex.Support.IO #endif // UNITTEST diff --git a/Source/Collections/RingMemoryStream.cs b/Source/IO/RingMemoryStream.cs similarity index 96% rename from Source/Collections/RingMemoryStream.cs rename to Source/IO/RingMemoryStream.cs index da94308..e2e164b 100644 --- a/Source/Collections/RingMemoryStream.cs +++ b/Source/IO/RingMemoryStream.cs @@ -21,7 +21,7 @@ License along with this library using System; using System.IO; -namespace Nuclex.Support.Collections { +namespace Nuclex.Support.IO { /// Specialized memory stream for ring buffers /// @@ -253,4 +253,4 @@ namespace Nuclex.Support.Collections { } -} // namespace Nuclex.Support.Collections +} // namespace Nuclex.Support.IO diff --git a/Source/PathHelper.cs b/Source/PathHelper.cs index 9462090..8c6d4c9 100644 --- a/Source/PathHelper.cs +++ b/Source/PathHelper.cs @@ -75,7 +75,7 @@ namespace Nuclex.Support { } // Now that we're in the common root folder, enter the folders that - // the absolute path has in addition to the + // the absolute target path has in addition to the root folder. for(int index = lastCommonRoot + 1; index < absoluteDirectories.Length; index++) { if(relativePath.Length > 0) // We don't want the path to start with a slash relativePath.Append(Path.DirectorySeparatorChar);