Home | History | Annotate | Download | only in io

Lines Matching refs:close

62    *       Closeables.close(stream, threw);
68 * @param swallowIOException if true, don't propagate IO exceptions thrown by the {@code close}
70 * @throws IOException if {@code swallowIOException} is false and {@code close} throws an
73 public static void close(@Nullable Closeable closeable,
79 closeable.close();
91 * Equivalent to calling {@code close(closeable, true)}, but with no IOException in the signature.
97 * try-with-resources</a> statement if using JDK7 or {@link Closer} on JDK6 to close one or
110 close(closeable, true);
132 close(inputStream, true);
153 close(reader, true);