ChangeLog 11 KB

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