Ejemplo n.º 1
0
 public static void enqueueCommandIfNotPresent(Host host, HostCommand command) throws IOException {
   if (host.getCurrentCommand() != command && !host.getCommandQueue().contains(command)) {
     host.enqueueCommand(command);
   }
 }