Skip to content

Commit

Permalink
Merge pull request #333 from itesla/fix_compile
Browse files Browse the repository at this point in the history
fix compile
  • Loading branch information
sylvlecl committed Mar 8, 2018
2 parents 827f466 + 7a0f2c2 commit fd67afb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private StreamingOutput toStream(SecurityAnalysisResult result, Network network,
public void write(OutputStream out) throws IOException {
Objects.requireNonNull(out);
try (Writer wr = new OutputStreamWriter(out, StandardCharsets.UTF_8)) {
SecurityAnalysisResultExporters.export(result, network, wr, format.toString());
SecurityAnalysisResultExporters.export(result, wr, format.toString());
}
}
};
Expand Down

0 comments on commit fd67afb

Please sign in to comment.