Skip to content

Commit

Permalink
Merge pull request #23 from dan2097/master
Browse files Browse the repository at this point in the history
Fixed incorrect output when performing image to mol file in parallel
  • Loading branch information
tylerperyea authored Apr 25, 2022
2 parents e46d91c + 2c53371 commit 2435862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/gov/nih/ncats/molvec/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public static void main(String[] args) throws Exception{
mol -> {
File out = new File(effectivelyFinalOutputDir, f.getName() + ".mol");
try (PrintWriter writer = new PrintWriter(out)) {
writer.println(mol);
writer.println(mol.getMolfile().get());
}
}
));
Expand Down

0 comments on commit 2435862

Please sign in to comment.