fix: make code java 11 compatible

This commit is contained in:
2023-12-26 14:22:35 +02:00
parent 87f8975275
commit 7aba89be85

View File

@@ -19,7 +19,7 @@ public class Paths {
for (var el : res) sb.append("/").append(el);
if (sb.isEmpty()) return "/";
if (sb.length() == 0) return "/";
else return sb.toString();
}