(FilePath dir)
| 204 | } |
| 205 | |
| 206 | public FilePath resolveTildeHome(FilePath dir) { |
| 207 | return value.startsWith("~") ? FilePath.of(value.replace("~", dir.toString())) : this; |
| 208 | } |
| 209 | |
| 210 | public List<String> split() { |
| 211 | if (split != null) { |
no test coverage detected