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