From cccb6b20c089b7b27c75525aa5e222c03fcc7d09 Mon Sep 17 00:00:00 2001 From: Yong Cong Sin Date: Mon, 17 Jun 2024 22:51:15 +0800 Subject: [PATCH] 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 --- include/zephyr/data/json.h | 4 ---- 1 file changed, 4 deletions(-) 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 = ':',