Skip to content

Commit 3e08d8c

Browse files
committed
spotbug
1 parent 2551dd8 commit 3e08d8c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

LabApiUtilities/src/main/com/microsoft/identity/labapi/utilities/authentication/LabApiAuthenticationClient.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public class LabApiAuthenticationClient implements IAccessTokenSupplier {
5151
private final static int ATTEMPT_RETRY_WAIT = 3;
5252
private final String mLabCredential;
5353
private final String mLabCertPassword;
54-
private final String defaultScope = LabConstants.DEFAULT_LAB_SCOPE;
5554
private final String mClientId;
5655

5756
public LabApiAuthenticationClient(@NonNull final String labSecret) {
@@ -124,7 +123,7 @@ private String getAccessTokenInternal(final String customScope) throws LabApiExc
124123
if (customScope != null) {
125124
authScope = customScope;
126125
} else {
127-
authScope = defaultScope;
126+
authScope = LabConstants.DEFAULT_LAB_SCOPE;
128127
}
129128

130129
final IConfidentialAuthClient confidentialAuthClient = new Msal4jAuthClient();

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ allprojects {
3535
*/
3636
repositories {
3737
// If you don't have access to the package feed uncomment these repositories
38-
// google()
39-
// mavenCentral()
38+
// mavenCentral()
39+
google()
4040
mavenLocal()
4141
maven {
4242
name "vsts-maven-adal-android"

0 commit comments

Comments
 (0)