This feed contains pages in the “java” category.

broken booleans

C/C++/Perl:

while(foo)
{
    bar(foo);
}

Python:

while foo:
    bar(foo)

Ruby:

while foo
    bar foo
end

Java:

while(foo != null)
{
    bar(foo);
}

Notice a pattern?