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/Location.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Compilation/Location.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/mcs/class/System.Web/System.Web.Compilation/Location.cs b/mcs/class/System.Web/System.Web.Compilation/Location.cs
index 4a57b8055ac..e4a0cb775a1 100644
--- a/mcs/class/System.Web/System.Web.Compilation/Location.cs
+++ b/mcs/class/System.Web/System.Web.Compilation/Location.cs
@@ -65,27 +65,22 @@ namespace System.Web.Compilation
public int BeginLine {
get { return beginLine; }
- set { beginLine = value; }
}
public int EndLine {
get { return endLine; }
- set { endLine = value; }
}
public int BeginColumn {
get { return beginColumn; }
- set { beginColumn = value; }
}
public int EndColumn {
get { return endColumn; }
- set { endColumn = value; }
}
public string PlainText {
get { return plainText; }
- set { plainText = value; }
}
}
}