Skip to content

Commit 120173d

Browse files
committed
fix: indentation
1 parent fc6585d commit 120173d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commons/src/main/java/io/aiven/kafka/tieredstorage/commons/storage/filesystem/FileSystemStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void delete(final String key) throws IOException {
9090
final Path path = fsRoot.resolve(key);
9191
Files.deleteIfExists(path);
9292
Path parent = path.getParent();
93-
while (parent != null && Files.isDirectory(parent) && !parent.equals(fsRoot)
93+
while (parent != null && Files.isDirectory(parent) && !parent.equals(fsRoot)
9494
&& PathUtils.isEmptyDirectory(parent)) {
9595
Files.deleteIfExists(parent);
9696
parent = parent.getParent();

0 commit comments

Comments
 (0)