View Single Post
Old 05-07-2006, 03:10 PM   #5 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,174
Belisarius is on a distinguished road
Code:
} end init
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".
__________________
GitS
Belisarius is offline   Reply With Quote