Merge pull request #1222 from LogosBible/uri-trycreate
[mono.git] / mcs / class / System / System.Configuration / SettingsAttributeDictionary.cs
index a9cbd2d850d8d6c91bd0a274c06e37a1bab9a800..0614028c5f8f4d4cdca45a2771a6d37ae78660d3 100644 (file)
@@ -26,7 +26,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 using System;
 using System.Collections;
 
@@ -40,11 +39,10 @@ namespace System.Configuration
                }
 
                public SettingsAttributeDictionary (SettingsAttributeDictionary attributes)
-                       : base (attributes)
+                       : base ((IDictionary) attributes)
                {
                }
 
        }
 }
 
-#endif