Merge branch '5.2.x'

This commit is contained in:
Juergen Hoeller
2020-09-18 18:16:33 +02:00
8 changed files with 28 additions and 30 deletions

View File

@@ -218,7 +218,7 @@ public abstract class FileCopyUtils {
return "";
}
StringWriter out = new StringWriter();
StringWriter out = new StringWriter(BUFFER_SIZE);
copy(in, out);
return out.toString();
}