diff --git a/Nuclex.Support.csproj b/Nuclex.Support (PC).csproj similarity index 100% rename from Nuclex.Support.csproj rename to Nuclex.Support (PC).csproj diff --git a/Source/Collections/ParentingCollection.cs b/Source/Collections/ParentingCollection.cs index e546539..2745762 100644 --- a/Source/Collections/ParentingCollection.cs +++ b/Source/Collections/ParentingCollection.cs @@ -25,7 +25,7 @@ namespace Nuclex.Support.Collections { /// Reparents all elements in the collection /// New parent to take ownership of the items - internal void Reparent(ParentType parent) { + protected void Reparent(ParentType parent) { this.parent = parent; for(int index = 0; index < Count; ++index) @@ -35,7 +35,7 @@ namespace Nuclex.Support.Collections { /// Called when the asset needs to release its resources /// /// Whether the mehod has been called from user code. If this argument - /// is false, the object is being disposed by the garbage collection and + /// is false, the object is being disposed by the garbage collector and /// it mustn't access other objects (including the attempt to Dispose() them) /// as these might have already been destroyed by the GC. /// diff --git a/Source/Serialization/BinarySerializer.Test.cs b/Source/Serialization/BinarySerializer.Test.cs index 8581221..93f816a 100644 --- a/Source/Serialization/BinarySerializer.Test.cs +++ b/Source/Serialization/BinarySerializer.Test.cs @@ -18,16 +18,16 @@ namespace Nuclex.Support.Serialization { public int Dummy; } - /// Prepares some test data for the units test methods + /// Prepares some test data for the unit test methods [TestFixtureSetUp] public void Setup() { } /// - /// Ensures that the ring buffer blocks write attempts that would exceed its capacity + /// Tests wether a simple collection can be successfully saved and loaded again /// [Test] - public void TestTooLargeChunk() { + public void TestSimpleCollection() { MemoryStream buffer = new MemoryStream(); // Fill and save