Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 519 Bytes

RCS1032.md

File metadata and controls

34 lines (24 loc) · 519 Bytes

RCS1032: Remove redundant parentheses

Property Value
Id RCS1032
Category Redundancy
Severity Info

Example

Code with Diagnostic

if ((x)) // RCS1032
{
    return (y); // RCS1032
}

Code with Fix

if (x)
{
    return y;
}

See Also

(Generated with DotMarkdown)