()
| 285 | public <N extends Node> N keep() { addUse(null); return (N)this; } |
| 286 | // Remove bogus null. |
| 287 | @SuppressWarnings("unchecked") |
| 288 | public <N extends Node> N unkeep() { delUse(null); return (N)this; } |
| 289 | // Test "keep" status |
| 290 | public boolean iskeep() { return _outputs.find(null) != -1; } |
| 291 | public void unkill() { |
no test coverage detected