Remove a private internal method that is not used. (#4667)

This commit is contained in:
Rick Winter 2023-06-09 13:55:32 -07:00 committed by GitHub
parent 3bce2fa45c
commit fb1b439ddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 0 additions and 86 deletions

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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.

View File

@ -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.

View File

@ -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;

View File

@ -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;