Consistent flushing of given OutputStream

This commit is contained in:
Juergen Hoeller 2020-09-18 19:14:11 +02:00
parent 82e64af5a5
commit f5d7161d6b
1 changed files with 1 additions and 0 deletions

View File

@ -127,6 +127,7 @@ public abstract class StreamUtils {
Assert.notNull(out, "No OutputStream specified");
out.write(in);
out.flush();
}
/**