| 152 | } |
| 153 | |
| 154 | static TString ReadFirstLine(TBufferedInput& in) { |
| 155 | TString s; |
| 156 | Y_ENSURE_EX(in.ReadLine(s), THttpReadException() << "Failed to get first line"); |
| 157 | return s; |
| 158 | } |
| 159 | |
| 160 | inline ~TImpl() { |
| 161 | } |
nothing calls this directly
no test coverage detected