Skip to content

Commit

Permalink
ALS-6511: Revert uneccesary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ramari16 committed Aug 16, 2024
1 parent 02f166d commit 3321f37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void close() {

public void open() {
try {
in = new FileInputStream(writer.getFile().getAbsolutePath());
in = new BufferedInputStream(new FileInputStream(writer.getFile().getAbsolutePath()), 1024 * 1024 * 8);
streamIsClosed = false;
} catch (FileNotFoundException e) {
throw new RuntimeException("temp file for result not found : " + writer.getFile().getAbsolutePath());
Expand Down

0 comments on commit 3321f37

Please sign in to comment.