Searched refs:swallowIOException (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/io/
H A DCloseables.java48 * <p>If {@code swallowIOException} is true then we never throw
69 * @param swallowIOException if true, don't propagate IO exceptions
71 * @throws IOException if {@code swallowIOException} is false and
75 boolean swallowIOException) throws IOException {
82 if (swallowIOException) {
74 close(@ullable Closeable closeable, boolean swallowIOException) argument
H A DFlushables.java43 * <p>If {@code swallowIOException} is true, then we don't rethrow
47 * @param swallowIOException if true, don't propagate IO exceptions
49 * @throws IOException if {@code swallowIOException} is false and
53 public static void flush(Flushable flushable, boolean swallowIOException) argument
58 if (swallowIOException) {

Completed in 312 milliseconds