Archive for August, 2005

A Great Site

Thursday, August 4th, 2005

The Daily WTF
The absolute most stunning piece of code currently on the page is:

public boolean checkFalse(Boolean bool)
{
if (bool.booleanValue() == Boolean.FALSE.booleanValue())
{
return Boolean.FALSE.booleanValue();
}
else
{
return Boolean.TRUE.booleanValue();
}
}