(String name,int freq,Node left,Node right)
| 66 | Node right; |
| 67 | |
| 68 | Node(String name,int freq,Node left,Node right) |
| 69 | { |
| 70 | this.name=name; |
| 71 | this.freq=freq; |
| 72 | this.left=left; |
| 73 | this.right=right; |
| 74 | } |
| 75 | } |
| 76 | } |
nothing calls this directly
no outgoing calls
no test coverage detected