OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:swallowioexception
(Results
1 - 2
of
2
) sorted by null
/external/guava/guava/src/com/google/common/io/
Flushables.java
43
* <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
)
58
if (
swallowIOException
) {
Closeables.java
49
* <p>If {@code
swallowIOException
} is true then we never throw {@code IOException} but merely log
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
74
boolean
swallowIOException
) throws IOException {
81
if (
swallowIOException
) {
Completed in 41 milliseconds