Skip to content

Commit

Permalink
GitHub-issue#253 : Implemented GeoIP processor functionality
Browse files Browse the repository at this point in the history
Signed-off-by: venkataraopasyavula <[email protected]>
  • Loading branch information
venkataraopasyavula committed Jun 23, 2023
1 parent b8b3717 commit a7806fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static File createFolderIfNotExist(String outputFilePath) {
final File destFile = new File(outputFilePath);
try {
if (!destFile.exists()) {
destFile.mkdir();
destFile.mkdirs();
}
}
catch (UncheckedIOException ex) {
Expand Down

0 comments on commit a7806fe

Please sign in to comment.