(TreeNode left)
| 16 | } |
| 17 | |
| 18 | public void setLeftChild(TreeNode left) { |
| 19 | this.left = left; |
| 20 | if (left != null) { |
| 21 | left.parent = this; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | public void setRightChild(TreeNode right) { |
| 26 | this.right = right; |
no outgoing calls
no test coverage detected