Skip to content

Commit

Permalink
Reverted variable name
Browse files Browse the repository at this point in the history
Signed-off-by: pierantoniomerlino <[email protected]>
  • Loading branch information
pierantoniomerlino committed Nov 21, 2024
1 parent d1a7da1 commit d36776d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ public static boolean toolExists(String tool) {
return true;
} else {
for (String folder : DEFAULT_PATH) {
File fUnit = new File(folder + tool);
if (fUnit.exists()) {
File fTool = new File(folder + tool);
if (fTool.exists()) {
TOOLS.add(tool);
return true;
}
Expand Down

0 comments on commit d36776d

Please sign in to comment.