2007-05-08 Igor Zelmanovich <igorz@mainsoft.com>
authorIgor Zelmanovich <igorz@mono-cvs.ximian.com>
Tue, 8 May 2007 13:21:59 +0000 (13:21 -0000)
committerIgor Zelmanovich <igorz@mono-cvs.ximian.com>
Tue, 8 May 2007 13:21:59 +0000 (13:21 -0000)
* ConnectionStringSettingsCollection.cs: removed 'new' keyword, cause
property doesn't hide any inherit property.

svn path=/trunk/mcs/; revision=76929

mcs/class/System.Configuration/System.Configuration/ChangeLog
mcs/class/System.Configuration/System.Configuration/ConnectionStringSettingsCollection.cs

index ed71a289044d3f6d19524efdf687622d2aebd88f..0bbb01552faca810ffba92b95daa53a294f6753c 100644 (file)
@@ -1,3 +1,8 @@
+2007-05-08 Igor Zelmanovich <igorz@mainsoft.com>
+
+       * ConnectionStringSettingsCollection.cs: removed 'new' keyword, cause 
+       property doesn't hide any inherit property.
+
 2007-04-24  Atsushi Enomoto  <atsushi@ximian.com>
 
        * InternalConfigurationHost.cs : machine configuration covers all
index 1e26511964760df58ea0287a4dc61c25568d0126..6d162c66541ccfa001fa7e9beef0b53eabbb13da 100644 (file)
@@ -58,7 +58,7 @@ namespace System.Configuration
                         }
                 }
 
-                public new ConnectionStringSettings this [int index]
+                public ConnectionStringSettings this [int index]
                 {
                         get { return (ConnectionStringSettings) BaseGet (index); }
                         set {