Skip to content

Commit

Permalink
[java] fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
CI Build committed Sep 24, 2023
1 parent f843e8b commit e2640f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/src/org/openqa/selenium/manager/SeleniumManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ private synchronized Path getBinary() {
throw new WebDriverException("Unable to obtain Selenium Manager Binary", e);
}
} else if (!Files.exists(binary)) {
throw new WebDriverException(String.format("Unable to obtain Selenium Manager Binary at: %s", binary));
throw new WebDriverException(
String.format("Unable to obtain Selenium Manager Binary at: %s", binary));
}
binary.toFile().setExecutable(true);

Expand Down

0 comments on commit e2640f1

Please sign in to comment.