Skip to content

Commit

Permalink
more fixes (#2049)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilgreenbird authored Jan 24, 2023
1 parent 2abc3d1 commit c443c7c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ public void setAADSecurePrincipalId(String AADSecurePrincipalId) {
* @deprecated
*/
@Override
@Deprecated
@Deprecated(since = "9.4.1", forRemoval = true)
public void setAADSecurePrincipalSecret(String AADSecurePrincipalSecret) {
setStringProperty(connectionProps, SQLServerDriverStringProperty.AAD_SECURE_PRINCIPAL_SECRET.toString(),
AADSecurePrincipalSecret);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ class SQLServerSecurityUtility {
// Environment variable for additionally allowed tenants. The tenantIds are comma delimited
private static final String ADDITIONALLY_ALLOWED_TENANTS = "ADDITIONALLY_ALLOWED_TENANTS";

private SQLServerSecurityUtility() {
throw new UnsupportedOperationException(SQLServerException.getErrString("R_notSupported"));
}

/**
* Give the hash of given plain text
*
Expand Down

0 comments on commit c443c7c

Please sign in to comment.