GitHub user jesselong opened a pull request:
https://github.com/apache/wicket/pull/16
Add @Override to all overridden methods
This includes all places @Override is permitted in Java 6, since Wicket
6 requires Java 6.
This patch does absolutely nothing except add about 890 @Override
annotations. @Override is good. Without @Override, methods tend to change or
disappear completely from the base class or interface, and overriding methods
are left scattered around that do not override or implement anything.
Since Wicket 6 supports Java 6, we may as well take full advantage of Java
6 compiler assistance.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/jesselong/wicket for-apache-master-pr-2
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/wicket/pull/16.patch
----
commit 83740b9e5f9ca91ae185bc5683b6c94a5349b85b
Author: Jesse Long <[email protected]>
Date: 2012-07-07T15:53:45-07:00
Add @Override to all overridden methods
This includes all places @Override is permitted in Java 6, since Wicket
6 requires Java 6.
----