diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/defs/Helpers.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/defs/Helpers.kt deleted file mode 100644 index c2bf8f0c..00000000 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/defs/Helpers.kt +++ /dev/null @@ -1,8 +0,0 @@ -package ru.dbotthepony.kstarbound.defs - -fun ensureAbsolutePath(path: String, parent: String): String { - if (path[0] == '/') - return path - - return "$parent/$path" -}