Skip to content

Commit 99cc184

Browse files
NischalManandharminbi
authored andcommitted
Update CognitoSecretHash.java
Closed the last quote in comment
1 parent 3650360 commit 99cc184

File tree

1 file changed

+3
-1
lines changed
  • aws-android-sdk-cognitoidentityprovider/src/main/java/com/amazonaws/mobileconnectors/cognitoidentityprovider/util

1 file changed

+3
-1
lines changed

aws-android-sdk-cognitoidentityprovider/src/main/java/com/amazonaws/mobileconnectors/cognitoidentityprovider/util/CognitoSecretHash.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
package com.amazonaws.mobileconnectors.cognitoidentityprovider.util;
1919

20+
import android.text.TextUtils;
21+
2022
import com.amazonaws.mobileconnectors.cognitoidentityprovider.exceptions.CognitoInternalErrorException;
2123
import com.amazonaws.mobileconnectors.cognitoidentityprovider.exceptions.CognitoParameterInvalidException;
2224
import com.amazonaws.util.Base64;
@@ -50,7 +52,7 @@ public static String getSecretHash(String userId, String clientId, String client
5052
}
5153

5254
// Return null as secret hash if clientSecret is null or "".
53-
// We receive clientSecret as "" if we create cognitoUserPool from awsConfiguration file with "AppClientSecret": "
55+
// We receive clientSecret as "" if we create cognitoUserPool from awsConfiguration file with "AppClientSecret": ""
5456
if (TextUtils.isEmpty(clientSecret)) {
5557
return null;
5658
}

0 commit comments

Comments
 (0)