MCPcopy Index your code
hub / github.com/0linlin0/CyberBox / closeStream

Method closeStream

Skay_Exp/src/tools/HttpUtils.java:274–284  ·  view source on GitHub ↗

���� @param streamList ������

(List<? extends Closeable> streamList)

Source from the content-addressed store, hash-verified

272 * @param streamList ������
273 */
274 private static void closeStream(List<? extends Closeable> streamList) {
275 if (null != streamList) {
276 for (Closeable stream : streamList) {
277 try {
278 stream.close();
279 } catch (IOException e) {
280 e.printStackTrace();
281 }
282 }
283 }
284 }
285
286 /**
287 * ��ȡ����������

Callers 1

doPostRequestMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected