Polish ternary expressions

This commit is contained in:
Phillip Webb
2018-07-29 09:16:06 +01:00
parent b24bb688b8
commit aeb885192e
49 changed files with 59 additions and 60 deletions

View File

@@ -154,7 +154,7 @@ public class CliTester implements TestRule {
}
}
else {
sources[i] = (new File(arg).isAbsolute() ? arg : this.prefix + arg);
sources[i] = new File(arg).isAbsolute() ? arg : this.prefix + arg;
}
}
return sources;