Java Question Error parsing library

alwaysbusy

Expert
Licensed User
Longtime User
Thx Erel, but I've found it. Somehow if two functions were note seperated by a space this happened.

eg error as:

public void getAngle() {
}
public void getRadian() {
}

ok as:
public void getAngle() {
}

public void getRadian() {
}

Weird as I've done this before without problems.

Maybe as a wish I could add that this error message would say what the name is of the double key. Could solve some future headaches.

Cheers
 
Top