Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Kotal authored and ahornace committed Apr 12, 2021
1 parent cc6f3fd commit 5dd4c2f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -871,11 +871,11 @@ private static void checkConfiguration() {
die("Repositories were specified; history is off however");
}

if (! new File(cfg.getSourceRoot()).canRead()) {
if (!new File(cfg.getSourceRoot()).canRead()) {
die("Source root '" + cfg.getSourceRoot() + "' must be readable");
}

if (! new File(cfg.getDataRoot()).canWrite()) {
if (!new File(cfg.getDataRoot()).canWrite()) {
die("Data root '" + cfg.getDataRoot() + "' must be writable");
}
}
Expand Down

0 comments on commit 5dd4c2f

Please sign in to comment.