diff --git a/include/zephyr/data/json.h b/include/zephyr/data/json.h index 07393109009..f140a8b45b5 100644 --- a/include/zephyr/data/json.h +++ b/include/zephyr/data/json.h @@ -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 = ':',