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