Skip to content

Commit

Permalink
Revert "ZOOKEEPER-4007: A typo in the ZKUtil#validateFileInput method"
Browse files Browse the repository at this point in the history
This reverts commit 4faf507.
  • Loading branch information
anmolnar authored and RokLenarcic committed Aug 31, 2022
1 parent aa6186a commit 8727200
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public static String validateFileInput(String filePath) {
return "Read permission is denied on the file '" + file.getAbsolutePath() + "'";
}
if (file.isDirectory()) {
return "'" + file.getAbsolutePath() + "' is a directory. it must be a file.";
return "'" + file.getAbsolutePath() + "' is a direcory. it must be a file.";
}
return null;
}
Expand Down

0 comments on commit 8727200

Please sign in to comment.