Remove the use of ifdef for TESTING_BUILD in KeyVault clients, where they are not needed. (#5418)
This commit is contained in:
parent
aad2299dcd
commit
7025e232bd
@ -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)
|
||||
|
||||
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user