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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-05-14 10:19:22 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-05-14 10:19:22 +0400
commit10cfe84e20fd10dd754c534a5f30442fda0419d8 (patch)
tree814fc8a19f877e7fb2c06eefce69e5f02abb71b5 /mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs
parent343a7a57104008fc88c3898633d551c85a1a557b (diff)
Got rid of those Internal(1) warnings
svn path=/trunk/mcs/; revision=27341
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs
index 36fd7ade824..7a533670214 100644
--- a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs
+++ b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlTextArea.cs
@@ -43,7 +43,7 @@ namespace System.Web.UI.HtmlControls{
get{
string attr = Attributes["rows"];
if (attr != null){
- return Int32.Parse(attr, CultureInfo.InvariantCulture);;
+ return Int32.Parse(attr, CultureInfo.InvariantCulture);
}
return -1;
}