()
| 10 | var sharedZSTDReaderPool *ReaderPool |
| 11 | |
| 12 | func init() { |
| 13 | if !teaconst.IsMain { |
| 14 | return |
| 15 | } |
| 16 | |
| 17 | sharedZSTDReaderPool = NewReaderPool(CalculatePoolSize(), func(reader io.Reader) (Reader, error) { |
| 18 | return newZSTDReader(reader) |
| 19 | }) |
| 20 | } |
nothing calls this directly
no test coverage detected