Cleanup (formatting)

This commit is contained in:
Roman Shevchenko 2014-10-06 12:32:02 +03:00
parent 6d2b94910c
commit 18a9c2851b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public class InterpreterUtil {
public static final boolean IS_WINDOWS = System.getProperty("os.name", "").startsWith("Windows");
private static final int CHANNEL_WINDOW_SIZE = IS_WINDOWS ? 64 * 1024 * 1024 - (32 * 1024) : 64 * 1024 * 1024; // magic number for Windows
private static final int BUFFER_SIZE = 16* 1024;
private static final int BUFFER_SIZE = 16 * 1024;
public static void copyFile(File in, File out) throws IOException {
FileInputStream inStream = new FileInputStream(in);