The "}" ends a statement in Java. It now begins processing the next statement, which happens to be "end init". This is obviously a comment that wasn't actually commented out. It's a syntatical error - Java tries to interpret it as best as it can, but because it doesn't make any sense it throws back it's best guess as to what is wrong with it - that is, the statement "end init" is lacking an ending semi-colon.
To resolve the error, simply comment out "end init".