Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2008-11-17 15:30:27 +0300
committerRaja R Harinath <harinath@hurrynot.org>2008-11-17 15:30:27 +0300
commit7b06496296e9d221e9d91373e1929e4934c254da (patch)
tree708dceb3a27f793d6dc77dd0a18550c1ffa0979b /mcs/class/System.Data/System.Data.Common/ChangeLog
parent9ab60f6e52feef5e1a347e9b0426131f9e47ca07 (diff)
Simplify using some invariants
* Index.cs: Remove use of Array and Size properties by taking advantage of the invariant that _array is never null. (EnsureArray): Remove. (Array): Remove. svn path=/trunk/mcs/; revision=119007
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/ChangeLog')
-rw-r--r--mcs/class/System.Data/System.Data.Common/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/ChangeLog b/mcs/class/System.Data/System.Data.Common/ChangeLog
index e39b84f093e..12d70c32e6a 100644
--- a/mcs/class/System.Data/System.Data.Common/ChangeLog
+++ b/mcs/class/System.Data/System.Data.Common/ChangeLog
@@ -1,5 +1,12 @@
2008-11-17 Raja R Harinath <harinath@hurrynot.org>
+ * Index.cs: Remove use of Array and Size properties by taking
+ advantage of the invariant that _array is never null.
+ (EnsureArray): Remove.
+ (Array): Remove.
+
+2008-11-17 Raja R Harinath <harinath@hurrynot.org>
+
* RecordCache.cs: Reduce some extraneous nesting.
2008-10-07 Daniel Morgan <monodanmorg@yahoo.com>