2009-01-30 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / WebHandlerParser.cs
index 7d047ad269397be3a7a902005a065071e89f827b..3b40f71bbf3cad21f5c8ec5d6af7955bd63fcb10 100644 (file)
@@ -5,7 +5,7 @@
 //     Gonzalo Paniagua Javier (gonzalo@ximian.com)
 //
 // (C) 2003 Ximian, Inc (http://www.ximian.com)
-//
+// (C) 2008 Novell, Inc (http://novell.com/)
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
@@ -36,14 +36,19 @@ namespace System.Web.UI
 {
        class WebHandlerParser : SimpleWebHandlerParser
        {
-               private WebHandlerParser (HttpContext context, string virtualPath, string physicalPath)
+               WebHandlerParser (HttpContext context, string virtualPath, string physicalPath)
                        : base (context, virtualPath, physicalPath)
                {
                }
 
 #if NET_2_0
                internal WebHandlerParser (HttpContext context, string virtualPath, TextReader reader)
-                       : base (context, virtualPath, null, reader)
+                       : this (context, virtualPath, null, reader)
+               {
+               }
+               
+               internal WebHandlerParser (HttpContext context, string virtualPath, string physicalPath, TextReader reader)
+                       : base (context, virtualPath, physicalPath, reader)
                {
                }
 #endif