Issue #367 Search in memory: save(export) SWFs

few refactorings
This commit is contained in:
Jindra Petk
2013-09-10 07:46:16 +02:00
parent 9696b91d4d
commit 17a5e75f1a
17 changed files with 133 additions and 48 deletions

View File

@@ -568,7 +568,8 @@ public class Helper {
try (FileOutputStream fos = new FileOutputStream(output)) {
while((cnt=is.read(buf))>0){
fos.write(buf,0,cnt);
}
fos.flush();
}
}
}
}