(E op)
| 410 | } |
| 411 | |
| 412 | private void checkInPlan(E op) throws PlanException { |
| 413 | if (mOps.get(op) == null) { |
| 414 | PlanException pe = new PlanException("Attempt to connect operator " + |
| 415 | op.name() + " which is not in the plan."); |
| 416 | log.error(pe.getMessage()); |
| 417 | throw pe; |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | /** |
| 422 | * Merges the operators in the incoming operPlan with |
no test coverage detected