summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/mono/files/systemweb3.patch')
-rw-r--r--dev-lang/mono/files/systemweb3.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-lang/mono/files/systemweb3.patch b/dev-lang/mono/files/systemweb3.patch
deleted file mode 100644
index 5ccb63a87869..000000000000
--- a/dev-lang/mono/files/systemweb3.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/mcs/class/System.Web.Routing/System.Web.Routing/RouteBase.cs 2015-05-08 18:00:15.000000000 +0300
-+++ b/mcs/class/System.Web.Routing/System.Web.Routing/RouteBase.cs 2015-07-20 14:13:09.215784924 +0300
-@@ -41,5 +41,19 @@
- {
- public abstract RouteData GetRouteData (HttpContextBase httpContext);
- public abstract VirtualPathData GetVirtualPath (RequestContext requestContext, RouteValueDictionary values);
-+
-+ // Default needs to be true to avoid breaking change
-+ private bool _routeExistingFiles = true;
-+ public bool RouteExistingFiles
-+ {
-+ get
-+ {
-+ return _routeExistingFiles;
-+ }
-+ set
-+ {
-+ _routeExistingFiles = value;
-+ }
-+ }
- }
- }