Syntax error on token ")", ; expected
From JavaErrors
One way that you can get the error
Syntax error on token ")", ; expected
is to put a method inside another method by mistake.
WRONG
public class Foo {
public void bar() {
// stuff
public void baz() {
}
}
}
RIGHT
public class Foo {
public void bar() {
// stuff
}
public void baz() {
}
}
