More 1.1 code and NET_2_0 ifdefs removed
[mono.git] / mcs / class / System.Web / System.Web.Compilation / BuildManagerCacheItem.cs
index 20bc671869c30acf7871d671be0fb4ca0b010f77..f0948133b5a3ff15d53dbb76b5cd4f976b78414b 100644 (file)
@@ -28,7 +28,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 using System;
 using System.CodeDom.Compiler;
 using System.Reflection;
@@ -62,12 +61,12 @@ namespace System.Web.Compilation
                        }
                                
                        if (BuiltAssembly != null) {
-                               sb.Append ((first ? "" : "; ") + "assembly: " + BuiltAssembly.ToString ());
+                               sb.Append ((first ? String.Empty : "; ") + "assembly: " + BuiltAssembly.ToString ());
                                first = false;
                        }
 
                        if (!String.IsNullOrEmpty (VirtualPath)) {
-                               sb.Append ((first ? "" : "; ") + "virtualPath: " + VirtualPath);
+                               sb.Append ((first ? String.Empty : "; ") + "virtualPath: " + VirtualPath);
                                first = false;
                        }
 
@@ -78,4 +77,3 @@ namespace System.Web.Compilation
        }
 }
 
-#endif
\ No newline at end of file