Skip to content

Commit 2e99b75

Browse files
committed
fix style
1 parent 5559579 commit 2e99b75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opengrok-indexer/src/test/java/org/opengrok/indexer/index/IndexDatabaseTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,8 +517,9 @@ private static void copyDirectory(Path src, Path dest) throws IOException {
517517
try {
518518
Path destPath = dest.resolve(src.relativize(srcPath));
519519
if (Files.isDirectory(srcPath)) {
520-
if(!Files.exists(destPath))
520+
if (!Files.exists(destPath)) {
521521
Files.createDirectory(destPath);
522+
}
522523
return;
523524
}
524525
Files.copy(srcPath, destPath);

0 commit comments

Comments
 (0)