Just an alert to those of you using it, guavac does not handle static
initializers correctly. It is supposed to execute them in the order they
appear in the java file, but instead it executes all the variable static
initializers (static int x = 80) before it executes explicit static
initializers.
If this bites you, at least now you'll know what it is.
--John Keiser

