Checks the specified token for validity. @param atom token to be checked @param info input info (can be null) @return token @throws QueryException query exception
(final byte[] atom, final InputInfo info)
| 94 | * @throws QueryException query exception |
| 95 | */ |
| 96 | public static byte[] parse(final byte[] atom, final InputInfo info) throws QueryException { |
| 97 | if(contains(atom, CLOSE)) throw CPICONT_X.get(info, atom); |
| 98 | return atom; |
| 99 | } |
| 100 | } |