(String path)
| 167 | } |
| 168 | |
| 169 | private static String expandRelativePath(String path) |
| 170 | { |
| 171 | if (path.startsWith("@")) |
| 172 | { |
| 173 | path = SystemUtils.USER_DIR + File.separator + path.substring(1); |
| 174 | } |
| 175 | return path; |
| 176 | } |
| 177 | |
| 178 | private static String unexpandRelativePath(String path) |
| 179 | { |