Skip to content

Commit

Permalink
Merge pull request microsoft#12 from srnagar/keyvault-upgrade
Browse files Browse the repository at this point in the history
Fix unit tests
  • Loading branch information
JonathanGiles authored Aug 20, 2020
2 parents a053426 + 0a3cb0f commit 684ecce
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
import java.util.logging.Level;
Expand Down Expand Up @@ -140,7 +141,7 @@ public SQLServerColumnEncryptionAzureKeyVaultProvider(TokenCredential tokenCrede
}

private void createKeyvaultClients(TokenCredential credential) throws SQLServerException {
this.credential = credential;
this.credential = Objects.requireNonNull(credential);
}

/**
Expand Down

0 comments on commit 684ecce

Please sign in to comment.