not starting with JRE 1.4
Status: Alpha
Brought to you by:
mikerackhabit
JRE 1.4 / W32
java complained about not having a public main
method...
...to fix this i just changed l. 25 of the JAR.java
##BEGIN
static void main(String[] args) {
##END
to
##BEGIN
public static void main(String[] args) {
##END
and recompiled the Prog...