(String path)
| 97 | } |
| 98 | |
| 99 | public static String normalizePath(String path) { |
| 100 | return (path != null) ? path.replaceAll("[\\\\/]+", Utils.PATH_SEPARATOR_REGEX) : null; |
| 101 | } |
| 102 | |
| 103 | public static String noSepAtStart(String path) { |
| 104 | return (path != null) ? path.replaceAll("^[\\\\/]+", "") : null; |
no outgoing calls