Returns the normalized index path representation for the specified path. The returned path begins with a slash and uses lower case on non-Unix machines. @param path input path (without leading slash) @return canonical path
(final byte[] path)
| 328 | * @return canonical path |
| 329 | */ |
| 330 | private static byte[] normalize(final byte[] path) { |
| 331 | return concat(cpToken('/'), Prop.CASE ? path : lc(path)); |
| 332 | } |
| 333 | |
| 334 | @Override |
| 335 | public String toString() { |