Property | Value |
---|---|
Id | RCS1179 |
Category | Simplification |
Severity | Info |
if (condition) // RCS1179
{
x = 1;
}
else
{
x = 2;
}
return x;
if (condition)
{
return 1;
}
else
{
return 2;
}
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1179 |
Category | Simplification |
Severity | Info |
if (condition) // RCS1179
{
x = 1;
}
else
{
x = 2;
}
return x;
if (condition)
{
return 1;
}
else
{
return 2;
}
(Generated with DotMarkdown)