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:
parent
666c39a321
commit
352444404d
|
@ -50,6 +50,7 @@ public class DeleteCommand<T> extends EditCommand<T> {
|
||||||
* visitDeleteCommand} method.
|
* visitDeleteCommand} method.
|
||||||
* @param visitor the visitor to be accepted
|
* @param visitor the visitor to be accepted
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public void accept(CommandVisitor<T> visitor) {
|
public void accept(CommandVisitor<T> visitor) {
|
||||||
visitor.visitDeleteCommand(object);
|
visitor.visitDeleteCommand(object);
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,6 +50,7 @@ public class InsertCommand<T> extends EditCommand<T> {
|
||||||
* visitInsertCommand} method.
|
* visitInsertCommand} method.
|
||||||
* @param visitor the visitor to be accepted
|
* @param visitor the visitor to be accepted
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public void accept(CommandVisitor<T> visitor) {
|
public void accept(CommandVisitor<T> visitor) {
|
||||||
visitor.visitInsertCommand(object);
|
visitor.visitInsertCommand(object);
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,6 +52,7 @@ public class KeepCommand<T> extends EditCommand<T> {
|
||||||
* its {@link CommandVisitor#visitKeepCommand visitKeepCommand} method.
|
* its {@link CommandVisitor#visitKeepCommand visitKeepCommand} method.
|
||||||
* @param visitor the visitor to be accepted
|
* @param visitor the visitor to be accepted
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public void accept(CommandVisitor<T> visitor) {
|
public void accept(CommandVisitor<T> visitor) {
|
||||||
visitor.visitKeepCommand(object);
|
visitor.visitKeepCommand(object);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue