ChangeLog 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. 2002-06-25 Nick Drochak <[email protected]>
  2. * Queue.cs (CopyTo): Fix logic for copying the circular array.
  3. (Enqueue): Use actual length of array to determine when to grow
  4. (QueueEnumerator) Fixed Current to use array length, not capacity, and
  5. fixed off-by-one errror in MoveNext().
  6. Tue Jun 4 13:08:43 CEST 2002 Paolo Molaro <[email protected]>
  7. * ArrayList.cs: fixed RemoveAt() implementation.
  8. 2002-05-27 Nick Drochak <[email protected]>
  9. * ArrayList.cs (LastIndexOf): Return -1 if searching for null, also
  10. fix check of parameters sent to make sure we don't search beyond the
  11. beginning of the list.
  12. (ListWrapper): Throw exception if called with null.
  13. We now pass all unit tests.
  14. 2002-05-23 Duncan Mak <[email protected]>
  15. * ArrayList.cs (Wrapper): Preliminary implementation of
  16. ArrayList.Wrapper (IList).
  17. 2002-05-22 Martin Baulig <[email protected]>
  18. * ArrayList.cs: Made count, capacity and dataArray the first three
  19. fields in the class. They're read by the reflection library.
  20. 2002-05-21 Lawrence Pit <[email protected]>
  21. * ArrayList.cs: Fixed bug where a capacity of 0 could be reached,
  22. thereby causing problems when trying to add elements.
  23. 2002-05-06 Duncan Mak <[email protected]>
  24. * Queue.cs (TrimToSize): Implemented.
  25. 2002-05-05 Nick Drochak <[email protected]>
  26. * ArrayList.cs: Throw RankException when constructing from a
  27. multi-dimensional array. Confirmed behavior from MS.NET
  28. Thu May 2 15:18:11 CEST 2002 Paolo Molaro <[email protected]>
  29. * ArrayList.cs: make mcs compile again: it's allowed to
  30. call arraylist.CopyTo(array, 0) when the length of the array
  31. is also 0.
  32. Wed May 1 17:05:40 CEST 2002 Paolo Molaro <[email protected]>
  33. * SortedList.cs: fix RemoveAt () to use the correct length in
  34. Array.Copy.
  35. 2002-05-01 Nick Drochak <[email protected]>
  36. * ArrayList.cs (Add & AddRange) : Throw exceptions where needed.
  37. 2002/05/01 Nick Drochak <[email protected]>
  38. * ArrayList.cs (CopyTo) : Check parameters and throw exceptions
  39. where needed.
  40. 2002/04/30 Nick Drochak <[email protected]>
  41. * ArrayList.cs (Clear) : Throw exception if ReadOnly or FixedSize.
  42. (InsertRange) : Implement.
  43. (SetRange) : Implement.
  44. 2002-04-30 Nick Drochak <[email protected]>
  45. * ArrayList.cs (TrimToSize) : Implement.
  46. 2002-04-28 Duncan Mak <[email protected]>
  47. * ArrayList.cs (InsertRange):
  48. (SetRange):
  49. (Remove):
  50. (TrimToSize): Throw exceptions where needed.
  51. 2002-04-29 Nick Drochak <[email protected]>
  52. * Hashtable.cs (CopyTo): Throw exceptions where needed.
  53. 2002-04-28 Duncan Mak <[email protected]>
  54. * ArrayList.cs (ReadOnly):
  55. (IList.ReadOnly): Implemented.
  56. (Synchronized):
  57. (IList.Synchronized): Implemented.
  58. (ixedSize):
  59. (IList.FixedSize): Implemented.
  60. 2002-03-24 Duncan Mak <[email protected]>
  61. * SortedList.cs (Synchronized): Stubbed out a missing method
  62. pointed out by Jakk Simm's test suite.
  63. 2002-03-14 Nick Drochak <[email protected]>
  64. * ArrayList.cs (FixedSize(ArrayList)): should return an ArrayList. The
  65. other FixedSize() methods returns an IList.
  66. 2002-03-13 Duncan Mak <[email protected]>
  67. * ArrayList.cs (FixedSize): Changed the return type to IList if
  68. the argument is an IList.
  69. (Synchronized): Ditto here.
  70. 2002-03-08 Sergey Chaban <[email protected]>
  71. * Hashtable.cs: Fixed ToPrime () bug. Removed ALLOC_GRAIN.
  72. Removed unused code from static constructor.
  73. GetObjectData () - Version is the same as modificationCount.
  74. 2002-02-20 Nick Drochak <[email protected]>
  75. * ArrayList.cs: Add MonoTODO's where necessary. Fix bugs discovered
  76. by Bucky's tests. Implement a couple of things that were left undone.
  77. Mon Feb 11 19:49:25 CET 2002 Paolo Molaro <[email protected]>
  78. * ArrayList.cs: Dick's fix to contructor.
  79. 2002-02-07 Duncan Mak <[email protected]>
  80. * Hashtable.cs: Implemented parts of the ISerializable
  81. interface. GetObjectData () is good, but serialization constructor
  82. needs some more love.
  83. Sat Jan 5 15:56:54 CET 2002 Paolo Molaro <[email protected]>
  84. * Hashtable.cs: the IDictionaryEnumerator returns DictionaryEntries.
  85. 2002-01-04 Ravi Pratap <[email protected]>
  86. * Correct name to MonoTODO everywhere.
  87. 2002-01-04 Ravi Pratap <[email protected]>
  88. * ArrayList.cs : Setting an index does not implicitly
  89. extend the arraylist : remove FIXME.
  90. Decorate incomplete elements with the TODO attribute.
  91. * BitArray.cs : Insert TODO attributes where appropriate.
  92. * CaseInsensitiveHashcodeProvider.cs: Ditto.
  93. * Hashtable.cs, SortedList.cs : Ditto.
  94. Thu Dec 13 20:17:08 CET 2001 Paolo Molaro <[email protected]>
  95. * ArrayList.cs: implemented AddRange(), CopyTo().
  96. 2001-11-19 Miguel de Icaza <[email protected]>
  97. * DictionaryBase.cs: Implemented.
  98. Wed Nov 14 16:45:49 CET 2001 Paolo Molaro <[email protected]>
  99. * ArrayList.cs: implement ArrayListEnumerator.
  100. * Hashtable.cs: hardcode the prime number table.
  101. 2001-11-06 Nick Drochak <[email protected]>
  102. * Queue.cs: Fixes from Ricardardo. QueueTest also updated.
  103. 2001-11-04 Nick Drochak <[email protected]>
  104. * Queue.cs: Fixed small syntax errors that were preventing the compile.
  105. I changed the build file to include Queue.cs as well.
  106. 2001-11-04 Nick Drochak <[email protected]>
  107. * ArrayList.cs: Fixed "off by one" error when shifting left the array when
  108. items are removed.
  109. * CollectionBase.cs: Added OnValidate(), OnRemove() and OnRemoveComplete()
  110. hook methods to the RemoveAt() method.
  111. 2001-11-04 Nick Drochak <[email protected]>
  112. * ArrayList.cs: Added private enumerator class and make GetEnumerator()
  113. methods return an instance of it.
  114. Tue Sep 25 18:52:48 CEST 2001 Paolo Molaro <[email protected]>
  115. * ArrayList.cs: fix Insert () to check capacity, not count.
  116. Tue Sep 25 16:54:54 CEST 2001 Paolo Molaro <[email protected]>
  117. * DictionaryEntry.cs: added.
  118. 2001-08-10 Dietmar Maurer <[email protected]>
  119. * common.src: removed duplicate entries
  120. 2001-08-08 Nick Drochak <[email protected]>
  121. * ReadOnlyCollectionBase.cs: Initialized private member.
  122. * CollectionBase.cs: Initialized private member.
  123. * common.src : Added ReadOnlyCollectionBase.cs and CollectionBase.cs
  124. * /mcs/class/makefile: Used $(SYSTEMROOT) instead of hard coded //c/winnt
  125. * /mcs/makefile: Used $(SYSTEMROOT) instead of hard coded //c/winnt
  126. 2001-08-08 Nick Drochak <[email protected]>
  127. * CollectionBase.cs: Add
  128. * ReadOnlyCollectionBase.cs: Add
  129. * CollectionBaseTest.cs: Add
  130. * ReadOnlyCollectionBaseTest.cs: Add
  131. 2001-07-31 Garrett Rooney <[email protected]>
  132. * StackTest.cs: Add Test case for System.Collections.Stack.
  133. Contributed by Chris Hynes <[email protected]>
  134. 2001-07-30 Garrett Rooney <[email protected]>
  135. * Stack.cs: Clone() doesn't need to check if it's synchronized, since
  136. we override it in SyncStack anyway...
  137. * Stack.cs: Pop() now shrinks the array if we drop below 1/4 full, to
  138. avoid using massive amounts of memory that are not necessary. We only
  139. drop to half the current size, which I hope will avoid the 'ping-pong'
  140. effect.
  141. * Stack.cs: SyncStack.IsReadOnly should return stack.IsReadOnly
  142. instead of just returning false, since we may have a ReadOnly wrapper
  143. in the future (although i can't imagine why). Thanks to David
  144. Menestrina <[email protected]> for pointing this out.
  145. 2001-07-23 Sergey Chaban <[email protected]>
  146. * Hashtable.cs: Fixed bug in Clear(), the Count wasn't zeroed.
  147. From now, Clear() increases modification count.
  148. Fixed HCP bug in GetHash(object) - hcp.GetHashCode() was used
  149. instead of hcp.GetHashCode(key). This was resulted in the
  150. insanely long lookup times when HashCodeProvider was used to
  151. construct Hashtable. Added thread-safe wrapper.
  152. 2001-07-16 David Menestrina <[email protected]>
  153. * BitArray.cs: Add
  154. * BitArrayTest.cs: Add
  155. 2001-07-18 Miguel de Icaza <[email protected]>
  156. * IDictionary.cs (Collections): IDictionary implements ICollection
  157. as well. Thanks Sergey!
  158. 2001-07-18 Garrett Rooney <[email protected]>
  159. * Stack.cs Removed unnecessary locking from many methods of
  160. SyncStack, removed SyncEnumerator because it was unnecessary,
  161. added a modCount member to Stack and Stack.Enumerator, to
  162. ensure that the Stack has not been modified out form under the
  163. Enumerator, and changed the Enumerator to use a reference to the
  164. stack rather than copying over the contents array.
  165. 2001-07-17 David Menestrina <[email protected]>
  166. * Added implementation of BitArray.
  167. 2001-07-17 Miguel de Icaza <[email protected]>
  168. * Hashtable.cs: Removed call to d.Count in the Hashtable
  169. constructor that takes an IDictionary as IDictionary does not
  170. provide a Count field.
  171. 2001-07-15 Sean MacIsaac <[email protected]>
  172. * IDictionary.cs: Clear was clear.
  173. 2001-07-13 Miguel de Icaza <[email protected]>
  174. * All files: Renamespace things to System.
  175. 2001-07-05 Vladimir Vukicevic <[email protected]>
  176. * ArrayList.cs: initial checkin and implementation
  177. * ICollection.cs, IComprarer.cs, IDictionary.cs,
  178. IDictionaryEnumerator.cs, IEnumerable.cs, IHashCodeProvider.cs,
  179. IList.cs: initial checkin