Re-enable 'crlf' attributes on *.cs
[mono.git] / mcs / mcs / namespace.cs
index 040363edeff411f339ee172b32f8d9ae579c5f69..a7442ae87c0ff83da9f0ceaa4c3d3f9e686b3960 100644 (file)
@@ -1046,11 +1046,11 @@ namespace Mono.CSharp {
                                        candidates = a;
                                else
                                        candidates.AddRange (a);
-                       }\r
-\r
-                       scope = parent;\r
-                       if (candidates != null)\r
-                               return candidates;\r
+                       }
+
+                       scope = parent;
+                       if (candidates != null)
+                               return candidates;
 
                        if (parent == null)
                                return null;
@@ -1060,8 +1060,8 @@ namespace Mono.CSharp {
                        //
                        Namespace parent_ns = ns.Parent;
                        do {
-                               candidates = parent_ns.LookupExtensionMethod (extensionType, null, name, arity);\r
-                               if (candidates != null)\r
+                               candidates = parent_ns.LookupExtensionMethod (extensionType, null, name, arity);
+                               if (candidates != null)
                                        return candidates;
 
                                parent_ns = parent_ns.Parent;