svn path=/trunk/mcs/; revision=55232
@@ -1,3 +1,7 @@
+2006-01-09 Konstantin Triger <[email protected]>
+
+ * Page.cs: make ProcessRequest virtual under TARGET_JVM.
2006-01-04 Chris Toshok <[email protected]>
* TemplateParser.cs (.ctor): kinda gross, but handle the
@@ -899,7 +899,11 @@ public class Page : TemplateControl, IHttpHandler
}
[EditorBrowsable (EditorBrowsableState.Never)]
+#if TARGET_JVM
+ public virtual void ProcessRequest (HttpContext context)
+#else
public void ProcessRequest (HttpContext context)
+#endif
{
_context = context;
if (clientTarget != null)