Fix stray ^M in decl.cs.
authorRaja R Harinath <harinath@hurrynot.org>
Wed, 1 Dec 2004 05:40:25 +0000 (05:40 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Wed, 1 Dec 2004 05:40:25 +0000 (05:40 -0000)
Change svn:eol-style:native=anonymous.cs properties to svn:eol-style=native

svn path=/trunk/mcs/; revision=36880

mcs/mcs/decl.cs
mcs/mcs/parser.cs

index 0d007ddffe2b39e5a8b20485efc68bf9e8b12b7c..893f0c34b1c63efd5ecd983439cf5a7bfded7a3f 100755 (executable)
@@ -122,7 +122,7 @@ namespace Mono.CSharp {
                                return MemberName.GetName (false);
                        }
                }
-\r
+
                 // Is not readonly because of IndexerName attribute
                public MemberName MemberName;
 
index c30a354ff916ea50424d56adce1e25174c7bb455..2750724fc6697cc15774524a45a032492a30661e 100755 (executable)
@@ -1,23 +1,23 @@
-\r
-namespace Compiler {\r
-\r
-       using System;\r
-\r
-       abstract public class Parser {\r
-               public string name;\r
-               public System.IO.Stream input;\r
-               \r
-               public Parser (Mono.CSharp.Tree tree, string name, System.IO.Stream stream) \r
-               {\r
-                       this.tree = tree;\r
-                       this.name = name;\r
-                       this.input = stream;\r
-               }\r
-\r
-               public string getName (){\r
-                       return name;\r
-               }\r
-\r
-               abstract public int parse ();\r
-       }\r
-}\r
+
+namespace Compiler {
+
+       using System;
+
+       abstract public class Parser {
+               public string name;
+               public System.IO.Stream input;
+               
+               public Parser (Mono.CSharp.Tree tree, string name, System.IO.Stream stream) 
+               {
+                       this.tree = tree;
+                       this.name = name;
+                       this.input = stream;
+               }
+
+               public string getName (){
+                       return name;
+               }
+
+               abstract public int parse ();
+       }
+}