Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.Compilation/ImplicitResourceKey.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Compilation/ImplicitResourceKey.cs30
1 files changed, 4 insertions, 26 deletions
diff --git a/mcs/class/System.Web/System.Web.Compilation/ImplicitResourceKey.cs b/mcs/class/System.Web/System.Web.Compilation/ImplicitResourceKey.cs
index d829134fd82..ac2bab3c256 100644
--- a/mcs/class/System.Web/System.Web.Compilation/ImplicitResourceKey.cs
+++ b/mcs/class/System.Web/System.Web.Compilation/ImplicitResourceKey.cs
@@ -29,37 +29,15 @@
#if NET_2_0
namespace System.Web.Compilation
{
- public sealed class ImplicitResourceKey
+ public class ImplicitResourceKey
{
- string filter;
- string keyPrefix;
- string property;
-
- public ImplicitResourceKey (string filter, string keyPrefix, string property)
- {
- this.filter = filter;
- this.keyPrefix = keyPrefix;
- this.property = property;
- }
-
public ImplicitResourceKey ()
{
}
- public string Filter {
- get { return filter; }
- set { filter = value; }
- }
-
- public string KeyPrefix {
- get { return keyPrefix; }
- set { keyPrefix = value; }
- }
-
- public string Property {
- get { return property; }
- set { property = value; }
- }
+ public string Filter;
+ public string KeyPrefix;
+ public string Property;
}
}
#endif