()
| 1140 | } |
| 1141 | |
| 1142 | @Override |
| 1143 | public final void end() throws IOException { |
| 1144 | if (reset != null) { |
| 1145 | throw new CloseNowException(reset); |
| 1146 | } |
| 1147 | if (!closed) { |
| 1148 | closed = true; |
| 1149 | flush(true); |
| 1150 | writeTrailers(); |
| 1151 | } |
| 1152 | } |
| 1153 | |
| 1154 | /** |
| 1155 | * @return <code>true</code> if it is certain that the associated response has no body. |
nothing calls this directly
no test coverage detected