removing unwanted modifiers
This commit is contained in:
@ -27,13 +27,11 @@ package com.iluwatar.command;
|
||||
* Interface for Commands.
|
||||
*/
|
||||
public interface Command {
|
||||
void execute(Target target);
|
||||
|
||||
public void execute(Target target);
|
||||
void undo();
|
||||
|
||||
public void undo();
|
||||
|
||||
public void redo();
|
||||
|
||||
public String toString();
|
||||
void redo();
|
||||
|
||||
String toString();
|
||||
}
|
||||
|
Reference in New Issue
Block a user