| 36 | } |
| 37 | |
| 38 | type decoderInputFileInfo struct { |
| 39 | fileID fileID |
| 40 | filename string |
| 41 | byteCount int |
| 42 | sixteenKHash [md5.Size]byte |
| 43 | hash [md5.Size]byte |
| 44 | checksumPairs []checksumPair |
| 45 | } |
| 46 | |
| 47 | func decoderInputFileInfoIDs(infos []decoderInputFileInfo) []fileID { |
| 48 | fileIDs := make([]fileID, len(infos)) |
nothing calls this directly
no outgoing calls
no test coverage detected