Replace parent with parentFile, relativePath with relativeTo

This commit is contained in:
Ilya Gorbunov
2015-10-01 20:21:54 +03:00
parent 3106458cc4
commit 25df3aac11
4 changed files with 4 additions and 4 deletions
@@ -106,7 +106,7 @@ public abstract class MultipleModulesTranslationTest(main: String) : BasicTest(m
var file = File(dir, name)
while (dir != null && dir.isDirectory() && !file.isFile()) {
dir = dir.parent
dir = dir.parentFile
file = File(dir, name)
}