0

Possible Duplicate:
@Override annotation error (android prefs)

I have imported a project into my Eclipse and opened it, but it shows many errors (all error result to: remove @Override annotation. But the thing, is that the project is too big and has many of @Override's written around it, so is there a fastest way to delete ALL the @Override annotations?

Community
  • 1
  • 1
baTimá
  • 554
  • 1
  • 10
  • 28

1 Answers1

2

Changing the compliance level of that project to 1.6 should solve those errors:

Right click the project > Properties > Java Compiler > Change compiler compliance to 1.6 > Apply
user
  • 86,916
  • 18
  • 197
  • 190