From 7d377f5290cb75b291927b35d8ad1d72739fdbed Mon Sep 17 00:00:00 2001 From: JinmingHu Date: Tue, 12 Jan 2021 11:35:45 +0800 Subject: [PATCH] change protected to private (#1315) --- .../inc/azure/storage/blobs/blob_container_client.hpp | 3 +-- .../inc/azure/storage/blobs/blob_service_client.hpp | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_container_client.hpp b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_container_client.hpp index 441c96b4a..0f1dcdc5b 100644 --- a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_container_client.hpp +++ b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_container_client.hpp @@ -324,13 +324,12 @@ namespace Azure { namespace Storage { namespace Blobs { Azure::Core::Response BreakLease( const BreakBlobContainerLeaseOptions& options = BreakBlobContainerLeaseOptions()) const; - protected: + private: Azure::Core::Http::Url m_blobContainerUrl; std::shared_ptr m_pipeline; Azure::Core::Nullable m_customerProvidedKey; Azure::Core::Nullable m_encryptionScope; - private: explicit BlobContainerClient( Azure::Core::Http::Url blobContainerUrl, std::shared_ptr pipeline, diff --git a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_service_client.hpp b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_service_client.hpp index d6e66870c..bfd231b07 100644 --- a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_service_client.hpp +++ b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_service_client.hpp @@ -179,7 +179,7 @@ namespace Azure { namespace Storage { namespace Blobs { const std::string& tagFilterSqlExpression, const FindBlobsByTagsSinglePageOptions& options = FindBlobsByTagsSinglePageOptions()) const; - protected: + private: Azure::Core::Http::Url m_serviceUrl; std::shared_ptr m_pipeline; Azure::Core::Nullable m_customerProvidedKey;