This site requires JavaScript, please enable it in your browser!
Greenfoot back
mmarboe
mmarboe wrote ...

2012/1/5

missing method body or declare abstract

mmarboe mmarboe

2012/1/5

#
what does it mean?
davmac davmac

2012/1/5

#
It means that your method has no body. Probably you have a semicolon where you shouldn't, as in:
  void someMethod(int a, int b);  // <-- semi-colon shouldn't be here!
  {
    // code here
  }
mmarboe mmarboe

2012/1/6

#
thank you! got it fixed!
You need to login to post a reply.