Root.Redundancy |
Parent | Index |
Sibling aspects | Metadata | Security | Smell | Spelling |
This aspect describes redundancy in your source code.
int foo(int iX)
{
int iY = iX*2;
return iX*2;
}
Redundant code makes your code harder to read and understand.
Redundant code can usually be removed without consequences.