Googleコーダーがflush()
メソッド を呼び出さない理由を教えてください。
/**
* Flushes the stream and forces any buffered bytes to be written. This
* does not flush the underlying OutputStream.
*/
public void flush() throws IOException {
if (output != null) {
refreshBuffer();
}
}
これには隠された理由がありますか?