I came across this Java code:
static { String aux = \"value\"; try { // some code here } catch (Exception e) { } String UUID_prefix =
This syntax has been outdated as of Java 7. Now the equivalent is:
public static void main(String[] args) { /* stuff */ }