MCPcopy Create free account
hub / github.com/antlr/codebuff / flushQuietly

Method flushQuietly

output/java_guava/1.4.17/Flushables.java:73–79  ·  view source on GitHub ↗

Equivalent to calling flush(flushable, true), but with no IOException in the signature. @param flushable the Flushable object to be flushed.

(Flushable flushable)

Source from the content-addressed store, hash-verified

71
72
73 public static void flushQuietly(Flushable flushable) {
74 try {
75 flush(flushable, true);
76 } catch (IOException e) {
77 logger.log(Level.SEVERE, "IOException should not have been thrown.", e);
78 }
79 }
80}

Callers

nothing calls this directly

Calls 2

flushMethod · 0.95
logMethod · 0.80

Tested by

no test coverage detected