From e2eb0a19aa95497c8979d71031edbbab721f5f0a Mon Sep 17 00:00:00 2001 From: Sandy Zhang Date: Fri, 1 Nov 2024 08:21:06 -0700 Subject: [PATCH] Breaking Change: Remove deprecated JsonOptions alias. This has been deprecated since v4.22.x and should be replace with JsonPrintOptions which was added in v3.0.0. See https://protobuf.dev/news/2024-10-02/#jsonoptions PiperOrigin-RevId: 692183958 --- src/google/protobuf/util/json_util.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/google/protobuf/util/json_util.h b/src/google/protobuf/util/json_util.h index 2b412c8555..bb47d1ec5d 100644 --- a/src/google/protobuf/util/json_util.h +++ b/src/google/protobuf/util/json_util.h @@ -19,9 +19,6 @@ namespace util { using JsonParseOptions = ::google::protobuf::json::ParseOptions; using JsonPrintOptions = ::google::protobuf::json::PrintOptions; -using JsonOptions ABSL_DEPRECATED("use JsonPrintOptions instead") = - JsonPrintOptions; - using ::google::protobuf::json::BinaryToJsonStream; using ::google::protobuf::json::BinaryToJsonString;