10

After I read clean code I talked to a fellow developer about some concepts. Later I reviewed some code of him and he clearly got the concept (not)

Java
...
If (isTrue(someValue))...

public boolean isTrue(boolean value){
if(value == true)
return true;
else
return false;
}

Comments
Add Comment