Merge pull request #2700 from akoeplinger/monotouch-mobile-static
[mono.git] / mcs / class / System.Web / System.Web.UI / CompiledBindableTemplateBuilder.cs
index 9c30e84ef537fbfc63feedf2a4a6c84d86be95f6..0a6ead79c2934b143452c388a4daf20062a5cf9b 100644 (file)
@@ -4,7 +4,7 @@
 // Authors:
 //     Lluis Sanchez Gual (lluis@novell.com)
 //
-// (C) 2005 Novell, Inc (http://www.novell.com)
+// (C) 2005-2010 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System.Collections.Specialized;
 
 namespace System.Web.UI
 {
        public sealed class CompiledBindableTemplateBuilder : IBindableTemplate
        {
-               private BuildTemplateMethod templateMethod;
-               private ExtractTemplateValuesMethod extractMethod;
+               BuildTemplateMethod templateMethod;
+               ExtractTemplateValuesMethod extractMethod;
 
                public CompiledBindableTemplateBuilder (BuildTemplateMethod buildTemplateMethod, ExtractTemplateValuesMethod extractTemplateValuesMethod)
                {
@@ -55,5 +53,3 @@ namespace System.Web.UI
                }
        }
 }
-
-#endif