Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 374 Bytes

RCS1032.md

File metadata and controls

29 lines (21 loc) · 374 Bytes

RCS1032: Remove redundant parentheses

Property Value
Id RCS1032
Severity Info

Example

Code with Diagnostic

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

Code with Fix

if (x)
{
    return y;
}

(Generated with DotMarkdown)