Skip to content

Commit c1ae0d4

Browse files
committed
Fix newlines
1 parent 970e749 commit c1ae0d4

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Mvc/PagesPropertyInjectionPass.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,7 @@ static string nullableEnable(bool nullableEnabled, string code)
6464
return code + ";";
6565
}
6666

67-
return $"""
68-
#nullable restore
69-
{code}!;
70-
#nullable disable
71-
""";
67+
return $"#nullable restore\r\n{code}!;\r\n#nullable disable";
7268
}
7369
}
7470

0 commit comments

Comments
 (0)