include: json: remove deprecated tokens

These token enums been deprecated for more than 2 releases,
remove them:

- JSON_TOK_LIST_START
- JSON_TOK_LIST_END

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
This commit is contained in:
Yong Cong Sin 2024-06-17 22:51:15 +08:00 committed by Anas Nashif
parent 18a6b07aa5
commit cccb6b20c0
1 changed files with 0 additions and 4 deletions

View File

@ -32,11 +32,7 @@ enum json_tokens {
JSON_TOK_NONE = '_',
JSON_TOK_OBJECT_START = '{',
JSON_TOK_OBJECT_END = '}',
/* JSON_TOK_LIST_START will be removed use JSON_TOK_ARRAY_START */
JSON_TOK_LIST_START __deprecated = '[',
JSON_TOK_ARRAY_START = '[',
/* JSON_TOK_LIST_END will be removed use JSON_TOK_ARRAY_END */
JSON_TOK_LIST_END __deprecated = ']',
JSON_TOK_ARRAY_END = ']',
JSON_TOK_STRING = '"',
JSON_TOK_COLON = ':',