What is the shortest infinite loop statement in Java?
for(;;){}
It works cause no condition evaluates to always true. Insert the code between the braces.
If you only got a few statements you can place them inside the head (the (;;) part. That the loop still runs is caused by when the condition statement is not a boolean it counts as always true. Thanx to @Ypnypn for the reminder