We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc6f3fd commit 5dd4c2fCopy full SHA for 5dd4c2f
opengrok-indexer/src/main/java/org/opengrok/indexer/index/Indexer.java
@@ -871,11 +871,11 @@ private static void checkConfiguration() {
871
die("Repositories were specified; history is off however");
872
}
873
874
- if (! new File(cfg.getSourceRoot()).canRead()) {
+ if (!new File(cfg.getSourceRoot()).canRead()) {
875
die("Source root '" + cfg.getSourceRoot() + "' must be readable");
876
877
878
- if (! new File(cfg.getDataRoot()).canWrite()) {
+ if (!new File(cfg.getDataRoot()).canWrite()) {
879
die("Data root '" + cfg.getDataRoot() + "' must be writable");
880
881
0 commit comments