()
| 90 | } |
| 91 | |
| 92 | public String getParent() { |
| 93 | int index = path.lastIndexOf(separatorChar); |
| 94 | if (index < 0) return null; |
| 95 | return path.substring(0, index); |
| 96 | } |
| 97 | |
| 98 | public File getParentFile() { |
| 99 | String p = getParent(); |
no test coverage detected