Skip to content

Commit

Permalink
feat: updated generate SMILE file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
ngyewch committed Jul 6, 2024
1 parent c20f1aa commit 402e94d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/GenerateTestData2.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public Integer call() throws Exception {
final File currentOutputDirectory = new File(outputDirectory, relativePath).getParentFile();
currentOutputDirectory.mkdirs();
final File smileOutputFile =
new File(currentOutputDirectory, adjustFileExtension(jsonInputFile.getName(), ".sml"));
new File(currentOutputDirectory, adjustFileExtension(jsonInputFile.getName(), ".smile"));
smileObjectMapper.writeValue(smileOutputFile, inputData.getValue());

final File jsonOutputFile = new File(currentOutputDirectory, jsonInputFile.getName());
Expand Down

0 comments on commit 402e94d

Please sign in to comment.