Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame
315 Bytes
package SimpleSlot;
/**
* Created by Administrator on 2017/6/19.
*/
public class NoCommand implements Command
{
@Override
public void execute()
{
System.out.println("No Command There");
}
@Override
public void undo()
{
System.out.println("No Command There");
}
}