Michaelangel007 / andengine

Automatically exported from code.google.com/p/andengine
0 stars 0 forks source link

@Override in interface methods #11

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Checkout and compile with a current eclipse

What is the expected output? What do you see instead?
Most of the API interface method implementations have a @Override annotation.
This is actually not correct in jdk 1.5 and Eclipse will not compile the code 
when set to 1.5 (required by Android SDK).

This is related to the fact that the ASDK needs a 1.5 class compatibility, and 
the use of @Override is only valid in 1.6. Temp solution is to set the compiler 
compliance to 1.6 but the generated class compatibility to 1.5.

Original issue reported on code.google.com by pappi...@gmail.com on 28 Dec 2010 at 4:13

GoogleCodeExporter commented 8 years ago

Original comment by NicolasG...@gmail.com on 9 Jun 2011 at 4:52