| 341 | |
| 342 | |
| 343 | void |
| 344 | Connection:: |
| 345 | clearNode(PortType portType) |
| 346 | { |
| 347 | getNode(portType) = nullptr; |
| 348 | |
| 349 | if (portType == PortType::In) |
| 350 | _inPortIndex = INVALID; |
| 351 | else |
| 352 | _outPortIndex = INVALID; |
| 353 | } |
| 354 | |
| 355 | |
| 356 | NodeDataType |
nothing calls this directly
no outgoing calls
no test coverage detected