Merge pull request #704 from jgagnon/master
[mono.git] / mcs / class / System.Web / System.Web / ParserError.cs
index 0fdd6763d1fdee0175675645d094b7a90a854e3c..071a91a62a2d8fc0216628c3afad579f7f15181e 100644 (file)
@@ -1,11 +1,11 @@
-// \r
-// System.Web.ParserError.cs\r
-//\r
-// Authors:\r
-//     Lluis Sanchez Gual (lluis@novell.com)\r
-//\r
-// (C) 2004 Novell, Inc (http://www.novell.com)\r
-//\r
+// 
+// System.Web.ParserError.cs
+//
+// Authors:
+//     Lluis Sanchez Gual (lluis@novell.com)
+//
+// (C) 2004-2009 Novell, Inc (http://www.novell.com)
+//
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
-#if NET_2_0\r
-\r
-using System.Runtime.Serialization;\r
-\r
-namespace System.Web {\r
-\r
-       [Serializable]\r
-       public sealed class ParserError\r
-       {\r
-               string _errorText;\r
-               string _virtualPath;\r
-               int _line;\r
-\r
-               public ParserError ()\r
-               {\r
-               }\r
-\r
-               public ParserError (string errorText, string virtualPath, int line)\r
-               {\r
-                       _errorText = errorText;\r
-                       _virtualPath = virtualPath;\r
-                       _line = line;\r
-               }\r
-\r
-               public string ErrorText {\r
-                       get { return _errorText; }\r
-               }\r
-               \r
-               public string VirtualPath {\r
-                       get { return _virtualPath; }\r
-               }\r
-\r
-               public int Line {\r
-                       get { return _line; }\r
-               }\r
-       }\r
-}\r
-\r
-#endif\r
+
+
+using System.Runtime.Serialization;
+
+namespace System.Web
+{
+       [Serializable]
+       public sealed class ParserError
+       {
+               string _errorText;
+               string _virtualPath;
+               int _line;
+
+               public ParserError ()
+               {
+               }
+
+               public ParserError (string errorText, string virtualPath, int line)
+               {
+                       _errorText = errorText;
+                       _virtualPath = virtualPath;
+                       _line = line;
+               }
+
+               public string ErrorText {
+                       get { return _errorText; }
+                       set { _errorText = value; }
+               }
+               
+               public string VirtualPath {
+                       get { return _virtualPath; }
+                       set { _virtualPath = value; }
+               }
+
+               public int Line {
+                       get { return _line; }
+                       set { _line = value; }
+               }
+       }
+}
+