Converts the specified token to lower case. @param token token to be converted @return resulting token
(final byte[] token)
| 1327 | * @return resulting token |
| 1328 | */ |
| 1329 | public static byte[] lc(final byte[] token) { |
| 1330 | return lc(token, ascii(token)); |
| 1331 | } |
| 1332 | |
| 1333 | /** |
| 1334 | * Converts the specified token to lower case. |
no test coverage detected