Remove a private internal method that is not used. (#4667)
This commit is contained in:
parent
3bce2fa45c
commit
fb1b439ddc
@ -30,7 +30,6 @@ namespace Azure { namespace Core {
|
||||
virtual std::unique_ptr<Http::RawResponse> PollInternal(Context const& context) = 0;
|
||||
virtual Response<T> PollUntilDoneInternal(std::chrono::milliseconds period, Context& context)
|
||||
= 0;
|
||||
virtual Azure::Core::Http::RawResponse const& GetRawResponseInternal() const = 0;
|
||||
|
||||
protected:
|
||||
std::unique_ptr<Azure::Core::Http::RawResponse> m_rawResponse = nullptr;
|
||||
|
||||
@ -69,11 +69,6 @@ namespace Azure { namespace Core { namespace Test {
|
||||
public:
|
||||
StringOperation() = default;
|
||||
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
std::string GetResumeToken() const override { return m_operationToken; }
|
||||
|
||||
std::string Value() const override
|
||||
|
||||
@ -52,16 +52,6 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Certificat
|
||||
std::string resumeToken,
|
||||
std::shared_ptr<CertificateClient> certificateClient);
|
||||
|
||||
/**
|
||||
* @brief Get the #Azure::Core::Http::RawResponse of the operation request.
|
||||
* @return A reference to an #Azure::Core::Http::RawResponse.
|
||||
* @note Does not give up ownership of the RawResponse.
|
||||
*/
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Get the #Azure::Security::KeyVault::Certificates::CertificateOperationProperties
|
||||
@ -151,16 +141,6 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Certificat
|
||||
std::string resumeToken,
|
||||
std::shared_ptr<CertificateClient> certificateClient);
|
||||
|
||||
/**
|
||||
* @brief Get the #Azure::Core::Http::RawResponse of the operation request.
|
||||
* @return A reference to an #Azure::Core::Http::RawResponse.
|
||||
* @note Does not give up ownership of the RawResponse.
|
||||
*/
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Get the #Azure::Security::KeyVault::Certificates::DeletedCertificate object.
|
||||
@ -229,16 +209,6 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Certificat
|
||||
std::string resumeToken,
|
||||
std::shared_ptr<CertificateClient> certificateClient);
|
||||
|
||||
/**
|
||||
* @brief Get the #Azure::Core::Http::RawResponse of the operation request.
|
||||
* @return A reference to an #Azure::Core::Http::RawResponse.
|
||||
* @note Does not give up ownership of the RawResponse.
|
||||
*/
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Get the #Azure::Security::KeyVault::Certificates::KeyVaultCertificateWithPolicy
|
||||
|
||||
@ -837,16 +837,6 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Keys {
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Get the #Azure::Core::Http::RawResponse of the operation request.
|
||||
* @return A reference to an #Azure::Core::Http::RawResponse.
|
||||
* @note Does not give up ownership of the RawResponse.
|
||||
*/
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Get the #Azure::Security::KeyVault::Keys::DeletedKey object.
|
||||
@ -938,16 +928,6 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Keys {
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Get the #Azure::Core::Http::RawResponse of the operation request.
|
||||
* @return A reference to an #Azure::Core::Http::RawResponse.
|
||||
* @note Does not give up ownership of the RawResponse.
|
||||
*/
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Get the #Azure::Security::KeyVault::Keys::KeyVaultKey object.
|
||||
|
||||
@ -51,16 +51,6 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Secrets {
|
||||
std::string resumeToken,
|
||||
std::shared_ptr<SecretClient> secretClient);
|
||||
|
||||
/**
|
||||
* @brief Get the #Azure::Core::Http::RawResponse of the operation request.
|
||||
* @return A reference to an #Azure::Core::Http::RawResponse.
|
||||
* @note Does not give up ownership of the RawResponse.
|
||||
*/
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Get the #Azure::Security::KeyVault::Secrets::Secret object.
|
||||
@ -125,16 +115,6 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Secrets {
|
||||
|
||||
DeleteSecretOperation(std::string resumeToken, std::shared_ptr<SecretClient> secretClient);
|
||||
|
||||
/**
|
||||
* @brief Get the #Azure::Core::Http::RawResponse of the operation request.
|
||||
* @return A reference to an #Azure::Core::Http::RawResponse.
|
||||
* @note Does not give up ownership of the RawResponse.
|
||||
*/
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
public:
|
||||
/**
|
||||
* @brief Get the #Azure::Security::KeyVault::Secrets::DeletedSecret object.
|
||||
|
||||
@ -246,11 +246,6 @@ namespace Azure { namespace Storage {
|
||||
std::chrono::milliseconds period,
|
||||
Azure::Core::Context& context) override;
|
||||
|
||||
Azure::Core::Http::RawResponse const& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
std::shared_ptr<BlobClient> m_blobClient;
|
||||
Models::BlobProperties m_pollResult;
|
||||
|
||||
|
||||
@ -328,11 +328,6 @@ namespace Azure { namespace Storage { namespace Files { namespace Shares {
|
||||
std::chrono::milliseconds period,
|
||||
Azure::Core::Context& context) override;
|
||||
|
||||
const Azure::Core::Http::RawResponse& GetRawResponseInternal() const override
|
||||
{
|
||||
return *m_rawResponse;
|
||||
}
|
||||
|
||||
std::shared_ptr<ShareFileClient> m_fileClient;
|
||||
Models::FileProperties m_pollResult;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user