Skip to content

Commit

Permalink
fix memory leak in benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
nitram509 committed Feb 18, 2016
1 parent 080ea20 commit ab46ff5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public void gzip_compression() throws IOException {
arrayOutputStream.reset();
GZIPOutputStream gzipOutputStream = new GZIPOutputStream(arrayOutputStream);
gzipOutputStream.write(cpHtmlData, 0, cpHtmlData.length);
gzipOutputStream.close();
}

public static void main(String[] args) throws RunnerException {
Expand Down

0 comments on commit ab46ff5

Please sign in to comment.