Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmarbach committed Nov 5, 2019
1 parent c1259e5 commit d164983
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/PublicApiGenerator/CodeNormalizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public static string NormalizeGeneratedCode(StringWriter writer)

gennedClass = gennedClass.Replace("class " + StaticMarker, "static class ");
gennedClass = gennedClass.Replace("struct " + ReadonlyMarker, "readonly struct ");
//gennedClass = gennedClass.Replace(AttributeMarker, string.Empty);
gennedClass = Regex.Replace(gennedClass, @"\r\n|\n\r|\r|\n", Environment.NewLine);

gennedClass = RemoveUnnecessaryWhiteSpace(gennedClass);
Expand Down

0 comments on commit d164983

Please sign in to comment.