Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 519 Bytes

RCS1040.md

File metadata and controls

37 lines (27 loc) · 519 Bytes

RCS1040: Remove empty else clause

Property Value
Id RCS1040
Category Redundancy
Severity Hidden

Example

Code with Diagnostic

if (condition)
{
    Foo();
}
else // RCS1040
{
}

Code with Fix

if (condition)
{
    Foo();
}

See Also

(Generated with DotMarkdown)