()
| 51 | } |
| 52 | |
| 53 | func (node *baseNode) Checksum() string { |
| 54 | return node.checksum |
| 55 | } |
| 56 | |
| 57 | func (node *baseNode) Verify(checksum string) bool { |
| 58 | return node.checksum == "" || node.checksum == checksum |
nothing calls this directly
no outgoing calls
no test coverage detected