Moved RingMemoryStream class from the Collections namespace to the IO namespace

git-svn-id: file:///srv/devel/repo-conversion/nusu@133 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2009-04-28 20:44:36 +00:00
parent f2280629b9
commit 1c317b3f66
5 changed files with 9 additions and 9 deletions

View File

@ -118,8 +118,8 @@
<Compile Include="Source\Collections\ReverseComparer.Test.cs">
<DependentUpon>ReverseComparer.cs</DependentUpon>
</Compile>
<Compile Include="Source\Collections\RingMemoryStream.cs" />
<Compile Include="Source\Collections\RingMemoryStream.Test.cs">
<Compile Include="Source\IO\RingMemoryStream.cs" />
<Compile Include="Source\IO\RingMemoryStream.Test.cs">
<DependentUpon>RingMemoryStream.cs</DependentUpon>
</Compile>
<Compile Include="Source\Collections\TransformingReadOnlyCollection.cs" />

View File

@ -100,8 +100,8 @@
<Compile Include="Source\Collections\ReverseComparer.Test.cs">
<DependentUpon>ReverseComparer.cs</DependentUpon>
</Compile>
<Compile Include="Source\Collections\RingMemoryStream.cs" />
<Compile Include="Source\Collections\RingMemoryStream.Test.cs">
<Compile Include="Source\IO\RingMemoryStream.cs" />
<Compile Include="Source\IO\RingMemoryStream.Test.cs">
<DependentUpon>RingMemoryStream.cs</DependentUpon>
</Compile>
<Compile Include="Source\Collections\TransformingReadOnlyCollection.cs" />

View File

@ -25,7 +25,7 @@ using System.IO;
using NUnit.Framework;
namespace Nuclex.Support.Collections {
namespace Nuclex.Support.IO {
/// <summary>Unit Test for the ring buffer class</summary>
[TestFixture]
@ -312,6 +312,6 @@ namespace Nuclex.Support.Collections {
}
} // namespace Nuclex.Support.Collections
} // namespace Nuclex.Support.IO
#endif // UNITTEST

View File

@ -21,7 +21,7 @@ License along with this library
using System;
using System.IO;
namespace Nuclex.Support.Collections {
namespace Nuclex.Support.IO {
/// <summary>Specialized memory stream for ring buffers</summary>
/// <remarks>
@ -253,4 +253,4 @@ namespace Nuclex.Support.Collections {
}
} // namespace Nuclex.Support.Collections
} // namespace Nuclex.Support.IO

View File

@ -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);