1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-16 16:44:50 +02:00

Readability

This commit is contained in:
Paul Schaub 2021-12-14 13:25:33 +01:00
parent 5bc032381d
commit e97ca3e3f2

View file

@ -17,7 +17,11 @@ import org.junit.jupiter.api.Test;
public class StreamDumpTest {
private static InputStream stringToStream(String string) throws IOException {
return new ArmoredInputStream(new ByteArrayInputStream(string.getBytes(Charset.forName("UTF8"))));
return new ArmoredInputStream(
new ByteArrayInputStream(
string.getBytes(Charset.forName("UTF8"))
)
);
}
private static void printDataName(String name) {