FroMage / jax-doclets

Set of JavaDoc doclets for modern Java annotations APIs
http://www.lunatech-labs.com/open-source/jax-doclets
GNU Lesser General Public License v3.0
26 stars 23 forks source link

Cosmetic: Invalid @Override tags in source code #50

Open j4m3s opened 12 years ago

j4m3s commented 12 years ago

Sorry to be a bore, but there are @Override annotations in the source code (e.g. ExcludeTaglet.java and some classes added/ changed over the last few days - PojoTypes.java, PojoClassWriter.java DataObjectIndexWriter.java) on methods that implement Interfaces rather than override superclasses.

The parent pom specifies a source and target of Java 1.5 - @Override on interface implementations isn't valid until 1.6.

The solution is either to change the pom to 1.6 or remove the @Override annotations. I'd vote for the second option unless there's a reason to move to 1.6 for the source?

Really minor point, but it causes compiler errors. :)