New test.
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / CompilerCollection.cs
index 5c3cd911a8bf031e9be4ae1c4afc3d15f14bf0df..e129987c6b5bcf3315851583709a9a69adca951f 100644 (file)
@@ -29,7 +29,6 @@
 //
 
 #if NET_2_0
-#if CONFIGURATION_2_0
 
 using System;
 using System.Configuration;
@@ -84,7 +83,7 @@ namespace System.Web.Configuration
                        }
                }
 
-               protected override ConfigurationElementCollectionType CollectionType {
+               public override ConfigurationElementCollectionType CollectionType {
                        get { return ConfigurationElementCollectionType.BasicMap; }
                }
 
@@ -109,20 +108,6 @@ namespace System.Web.Configuration
                                return null;
                        }
                }
-
-#region CompatabilityCode
-               [MonoTODO ("we shouldn't need this..")]
-               internal bool CompareLanguages (string lang1, string lang2)
-               {
-                       return (this [lang1] == this [lang2]);
-               }
-
-               internal void Add (Compiler compiler)
-               {
-                       BaseAdd (compiler);
-               }
-#endregion
        }
 }
 #endif
-#endif