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