Merge branch '5.2.x'

This commit is contained in:
Juergen Hoeller 2020-10-07 15:34:57 +02:00
commit d55c5b30d7
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ public abstract class StreamUtils {
return "";
}
StringBuilder out = new StringBuilder();
StringBuilder out = new StringBuilder(BUFFER_SIZE);
InputStreamReader reader = new InputStreamReader(in, charset);
char[] buffer = new char[BUFFER_SIZE];
int charsRead;