Consistent flushing of given OutputStream

(cherry picked from commit f5d7161d6b)
This commit is contained in:
Juergen Hoeller
2020-09-18 19:14:11 +02:00
parent 8fe530c449
commit 560fec51a1

View File

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