Skip to content

Commit

Permalink
Remove the disabling of CS0618
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Mar 1, 2024
1 parent 65b409b commit 7d3dc6d
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ void WriteClassClose (State state)

void WriteDisableWarnings (State state)
{
state.WriteLine ("#pragma warning disable CS0618");
state.WriteLine ("#pragma warning disable CS8981");
state.WriteLine ("#pragma warning disable CS1591");
}
Expand All @@ -168,7 +167,6 @@ void WriteEnableWarnings (State state)
{
state.WriteLine ("#pragma warning restore CS1591");
state.WriteLine ("#pragma warning restore CS8981");
state.WriteLine ("#pragma warning restore CS0618");
}

void WriteAutoGeneratedComment (State state)
Expand Down

0 comments on commit 7d3dc6d

Please sign in to comment.