package cmdpack;

/**
 *  Redo command.
 */
public class Redo extends Command {
    /**
     *  Return a printable representation of this command.
     *  @return A printable representation of this command.
     */
    public String toString () { return "Redo"; }
}
