Remove the use of ifdef for TESTING_BUILD in KeyVault clients, where they are not needed. (#5418)

This commit is contained in:
Ahson Khan 2024-03-07 16:56:06 -08:00 committed by GitHub
parent aad2299dcd
commit 7025e232bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 10 deletions

View File

@ -33,11 +33,7 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Certificat
*
* @details The client supports retrieving KeyVaultCertificate.
*/
class CertificateClient
#if !defined(TESTING_BUILD)
final
#endif
{
class CertificateClient final {
friend class CreateCertificateOperation;
#if defined(TESTING_BUILD)

View File

@ -42,11 +42,7 @@ namespace Azure { namespace Security { namespace KeyVault { namespace Secrets {
* Vault. The client supports creating, retrieving, updating, deleting, purging, backing up,
* restoring, and listing the secret.
*/
class SecretClient
#if !defined(TESTING_BUILD)
final
#endif
{
class SecretClient final {
private:
// Using a shared pipeline for a client to share it with LRO (like delete key)