Missing @Overrides

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1353217 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-06-24 01:22:31 +00:00
parent 666c39a321
commit 352444404d
3 changed files with 3 additions and 0 deletions

View File

@ -50,6 +50,7 @@ public class DeleteCommand<T> extends EditCommand<T> {
* visitDeleteCommand} method.
* @param visitor the visitor to be accepted
*/
@Override
public void accept(CommandVisitor<T> visitor) {
visitor.visitDeleteCommand(object);
}

View File

@ -50,6 +50,7 @@ public class InsertCommand<T> extends EditCommand<T> {
* visitInsertCommand} method.
* @param visitor the visitor to be accepted
*/
@Override
public void accept(CommandVisitor<T> visitor) {
visitor.visitInsertCommand(object);
}

View File

@ -52,6 +52,7 @@ public class KeepCommand<T> extends EditCommand<T> {
* its {@link CommandVisitor#visitKeepCommand visitKeepCommand} method.
* @param visitor the visitor to be accepted
*/
@Override
public void accept(CommandVisitor<T> visitor) {
visitor.visitKeepCommand(object);
}