While coding, i just asked myself this question :
Is this faster :
if(false) return true;
else return false;
Than this ?
if(false) return true;
return false;
Of course, IF there is a difference it is ridiculous, but my curiosity won't leave until i know that :D
return false– erenon Dec 16 '10 at 20:31