Gets a path relative to the default user directory. @param absolutePath the absolute path @return the relative path, with forward slashes
(String absolutePath)
| 394 | * @return the relative path, with forward slashes |
| 395 | */ |
| 396 | public static String getRelativePath(String absolutePath) { |
| 397 | return getPathRelativeTo(absolutePath, getUserDirectory()); |
| 398 | } |
| 399 | |
| 400 | /** |
| 401 | * Gets the default user directory. |
no test coverage detected