From 8f75082fd6b6e64e7d169794cd2368a17173bf98 Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Wed, 10 Feb 2021 13:42:01 -0800 Subject: [PATCH] Remove the TransportKind enum from the SDK since it is not used. (#1653) * Remove the TransportKind enum from the SDK since it is not used. * Add a CL entry. --- sdk/core/azure-core/CHANGELOG.md | 3 ++- sdk/core/azure-core/inc/azure/core/http/http.hpp | 10 ---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/sdk/core/azure-core/CHANGELOG.md b/sdk/core/azure-core/CHANGELOG.md index 94080cd82..be14ef30c 100644 --- a/sdk/core/azure-core/CHANGELOG.md +++ b/sdk/core/azure-core/CHANGELOG.md @@ -4,7 +4,8 @@ ### Breaking Changes -- Split `Azure::Core::RequestConditions` into `Azure::Core::MatchConditions` and `Auzre::Core::ModifiedConditions`. +- Split `Azure::Core::RequestConditions` into `Azure::Core::MatchConditions` and `Azure::Core::ModifiedConditions`. +- Removed `TransportKind` enum from `Azure::Core::Http`. ## 1.0.0-beta.6 (2021-02-09) diff --git a/sdk/core/azure-core/inc/azure/core/http/http.hpp b/sdk/core/azure-core/inc/azure/core/http/http.hpp index 4b84747df..f0b2e579d 100644 --- a/sdk/core/azure-core/inc/azure/core/http/http.hpp +++ b/sdk/core/azure-core/inc/azure/core/http/http.hpp @@ -87,16 +87,6 @@ namespace Azure { namespace Core { namespace Http { } }; - /** - * @brief HTTP transport implementation used. - */ - enum class TransportKind - { - // TODO move this to Factory - Curl, ///< CURL. - WinHttp ///< WinHTTP. - }; - /** * @brief Defines the possible HTTP status codes. */