Ver código fonte

fix the merge error

svn path=/trunk/mcs/; revision=68402
Andrew Skiba 19 anos atrás
pai
commit
1be80554e7

+ 0 - 22
mcs/class/System.Web/Test/mainsoft/NunitWeb/NunitWeb/MyPageHandlerFactory.cs

@@ -20,25 +20,3 @@ namespace MonoTests.SystemWeb.Framework
 	}
 
 }
-using System;
-using System.Web;
-using System.Web.UI;
-
-namespace MonoTests.SystemWeb.Framework
-{
-	class MyPageHandlerFactory : IHttpHandlerFactory
-	{
-		public virtual IHttpHandler GetHandler (HttpContext context, string requestType, string url, string path)
-		{
-			IHttpHandler h = PageParser.GetCompiledPageInstance (url, path, context);
-			Page p = (Page)h; //some configuration error if cannot cast, let it crash
-			WebTest.CurrentTest.Invoke (p);
-			return h;
-		}
-
-		public virtual void ReleaseHandler (IHttpHandler handler)
-		{
-		}
-	}
-
-}