vote up 6 vote down star

The most egregiously redundant code construct I often see involves using the code sequence

if (condition)
    return true;
else
    return false;

instead of simply writing

return (condition);

I've seen this beginner error in all sorts of languages: from Pascal and C to PHP and Java. What other such constructs would you flag in a code review?

flag
There are times however, when you are designing a code to be filled out. In which case leaving that construct in place as scaffolding makes sense. But if the function is considered "complete" then that should have been optimized out by the coder for maintainability. – Joseph Daigle Sep 26 '08 at 12:56
Should be a community wiki. – tj111 Jun 10 at 15:09
I set the community wiki bit - thanks for the suggestion. – Diomidis Spinellis Jun 15 at 2:31

19 Answers

vote up 2 vote down

Returning uselessly at the end:

   // stuff
   return;
}
link|flag
vote up 2 vote down

Using .tostring on a string

link|flag
vote up 7 vote down
if (condition == true)
{
  ...
}

instead of

if (condition)
{
  ...
}

Edit:

or even worse and turning around the conditional test:

if (condition == false)
{
  ...
}

which is easily read as

if (condition) then ...
link|flag
I think you beat me to it by a few seconds! – Paul Tomblin Sep 26 '08 at 12:51
Yeah, I must have been slightly faster. I did upvote yours though because of the humor :) – Otherside Sep 26 '08 at 13:13
vote up 6 vote down
if (foo == true)
{
   do stuff
}

I keep telling the developer that does that that it should be

if ((foo == true) == true)
{
   do stuff
}

but he hasn't gotten the hint yet.

link|flag
Don't give 'em reverse advice, it'll just confuse them. – Johan Sep 26 '08 at 13:05
vote up 3 vote down
void myfunction() {
  if(condition) {
    // Do some stuff
    if(othercond) {
      // Do more stuff
    }
  }
}

instead of

void myfunction() {
  if(!condition)
    return;

  // Do some stuff

  if(!othercond)
    return;

  // Do more stuff
}
link|flag
That construct could be argued as valid if you're the "multiple returns voilates structured code" type. – Paul Tomblin Sep 26 '08 at 12:54
You need a better example. With only one level of nesting, the "early return" style is no better. In that sample I prefer the former. But I know what you're getting at and agree with the idea. – Steve Fallows Sep 26 '08 at 12:59
Even with only one level of nesting, 'early return' still saves you that level of nesting. I don't see why one level is no better but 2+ levels is. :) – Nick Johnson Sep 26 '08 at 13:01
Edited it to make a more egregious example anyway. – Nick Johnson Sep 26 '08 at 13:09
Well, at least for me one level of conditional reads very naturally with no confusion. – Steve Fallows Sep 26 '08 at 13:51
show 1 more comment
vote up 1 vote down

I once had a guy who repeatedly did this:

bool a;
bool b;
...
if (a == true)
    b = true;
else
    b = false;
link|flag
b = a ? true : false; It depends, would you want b to equal 17 if that was what a equalled? – Mez Sep 29 '08 at 7:56
vote up 1 vote down

Putting an exit statement as first statement in a function to disable the execution of that function, instead of one of the following options:

  • Completely removing the function
  • Commenting the function body
  • Keeping the function but deleting all the code

Using the exit as first statement makes it very hard to spot, you can easily read over it.

link|flag
For debugging though, deleting the function often isn't an option (if it's called in many places), commenting the body doesn't work if there's nested comments, and deleting the code means you have to save it somewhere. The 'real WTF'(tm) is leaving the exit statement in. – Nick Johnson Sep 26 '08 at 13:10
Deleting the code should always be an option because you have source control. so the Real WTF is not having source control. – mattlant Sep 26 '08 at 13:43
heh, i as i continue reading someone has mentioned that already :) – mattlant Sep 26 '08 at 13:44
I ran into this case with code fresh out of source control from a coworker. Made for some headscratching, even with 2 guys looking at that code :) – Otherside Sep 29 '08 at 12:52
vote up 3 vote down

Declaring separately from assignment in languages other than C:
int foo;
foo = GetFoo();

link|flag
I actually do that quite often in C++ with non built-ins, where I may or may not want to add stuff to a vector for example. – Dominic Rodger Jun 10 at 15:05
vote up 6 vote down

Using comments instead of source control:
-Commenting out or renaming functions instead of deleting them and trusting that source control can get them back for you if needed.
-Adding comments like "RWF Change" instead of just making the change and letting source control assign the blame.

link|flag
vote up 4 vote down

Somewhere I’ve spotted this thing, which I find to be the pinnacle of boolean redundancy:

return (test == 1)? ((test == 0) ? 0 : 1) : ((test == 0) ? 0 : 1);

:-)

link|flag
A compilers dream :) – leppie Oct 2 '08 at 13:21
vote up 1 vote down

I often run into the following:

function foo() {
    if ( something ) {
        return;
    } else {
        do_something();
    }
}

But it doesn't help telling them that the else is useless here. It has to be either

function foo() {
    if ( something ) {
        return;
    }
    do_something();
}

or - depending on the length of checks that are done before do_something():

function foo() {
    if ( !something ) {
        do_something();
    }
}
link|flag
I'll disagree on that one. The original code doesn't perform any worse, and the actual work is in the code at the same level of nesting -- Which I find more readable. It really comes down to a team style convention. – chris Sep 26 '08 at 13:17
I find the first case easier to read too. Maybe the visual symmetry helps. – Thomas Bratt Sep 29 '08 at 12:14
It depends. If we're talking about an early exit, then the second form is better; if the two cases are of similar importance, then I would go for the first form. – Diomidis Spinellis Oct 6 '08 at 6:23
vote up 0 vote down

Using an array when you want set behavior. You need to check everything to make sure its not in the array before you insert it, which makes your code longer and slower.

link|flag
vote up 2 vote down

Redundant code is not in itself an error. But if you're really trying to save every character

return (condition);

is redundant too. You can write:

return condition;
link|flag
vote up 2 vote down

Fear of null (this also can lead to serious problems):

if (name != null)
  person.Name = name;

Redundant if's (not using else):

if (!IsPostback)
{
   // do something
}
if (IsPostback)
{
   // do something else
}

Redundant checks (Split never returns null):

string[] words = sentence.Split(' ');
if (words != null)

More on checks (the second check is redundant if you are going to loop)

if (myArray != null && myArray.Length > 0)
  foreach (string s in myArray)

And my favorite for ASP.NET: Scattered DataBinds all over the code in order to make the page render.

link|flag
vote up 2 vote down

Copy paste redundancy:

if (x > 0)
{
   // a lot of code to calculate z
   y = x + z;
}
else
{
   // a lot of code to calculate z
   y = x - z;
}

instead of

if (x > 0)
  y = x + CalcZ(x);
else
  y = x - CalcZ(x);

or even better (or more obfuscated)

y = x + (x > 0 ? 1 : -1) * CalcZ(x)
link|flag
vote up 2 vote down

Allocating elements on the heap instead of the stack.

{
    char buff = malloc(1024);
    /* ... */
    free(buff);
}

instead of

{
    char buff[1024];
    /* ... */
}

or

{    
    struct foo *x = (struct foo *)malloc(sizeof(struct foo));
    x->a = ...;
    bar(x);
    free(x);
}

instead of

{
    struct foo x;
    x.a = ...;
    bar(&x);
}
link|flag
This is only valid in those cases, when you know exactly how big the buffer must be. I also had problems on some linux distributions - they would simply refuse to give me a buffer of 4k bytes. – Paulius Maruška Sep 29 '08 at 8:02
Of course! I'm talking about cases where the malloc is for a fixed-size chunk of memory. – Diomidis Spinellis Oct 6 '08 at 6:22
vote up 1 vote down

From nightmarish code reviews.....

char s[100];

followed by

memset(s,0,100);

followed by

s[strlen(s)] = 0;

with lots of nasty

if (strcmp(s, "1") == 0)

littered about the code.

link|flag
vote up 0 vote down

Redundant .ToString() invocations:

const int foo = 5;
Console.WriteLine("Number of Items: " + foo.ToString());

Unnecessary string formatting:

const int foo = 5;
Console.WriteLine("Number of Items: {0}", foo);
link|flag
vote up 0 vote down

The most common redundant code construct I see is code that is never called from anywhere in the program.

The other is design patterns used where there is no point in using them. For example, writing "new BobFactory().createBob()" everywhere, instead of just writing "new Bob()".

Deleting unused and unnecessary code can massively improve the quality of the system and the team's ability to maintain it. The benefits are often startling to teams who have never considered deleting unnecessary code from their system. I once performed a code review by sitting with a team and deleting over half the code in their project without changing the functionality of their system. I thought they'd be offended but they frequently asked me back for design advice and feedback after that.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.