コード例 #1
0
ファイル: Hosts.java プロジェクト: sidoh/hank
 public static void enqueueCommandIfNotPresent(Host host, HostCommand command) throws IOException {
   if (host.getCurrentCommand() != command && !host.getCommandQueue().contains(command)) {
     host.enqueueCommand(command);
   }
 }