You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/BeginSignIn/CredentialProviderBeginSignInController.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,7 @@ class CredentialProviderBeginSignInController(private val activity: Activity) :
134
134
)
135
135
return
136
136
}
137
-
if (maybeReportErrorResultCodeGet(resultCode,TAG,
137
+
if (maybeReportErrorResultCodeGet(resultCode,
138
138
{ s, f -> cancelOrCallbackExceptionOrResult(s, f) }, { e ->
Copy file name to clipboardExpand all lines: credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/CreatePassword/CredentialProviderCreatePasswordController.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ class CredentialProviderCreatePasswordController(private val activity: Activity)
113
113
"$CONTROLLER_REQUEST_CODE which does not match what was given $uniqueRequestCode")
114
114
return
115
115
}
116
-
if (maybeReportErrorResultCodeCreate(resultCode,TAG,
116
+
if (maybeReportErrorResultCodeCreate(resultCode,
117
117
{ s, f -> cancelOrCallbackExceptionOrResult(s, f) }, { e ->this.executor.execute {
Copy file name to clipboardExpand all lines: credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/CreatePublicKeyCredential/CredentialProviderCreatePublicKeyCredentialController.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,7 @@ class CredentialProviderCreatePublicKeyCredentialController(private val activity
134
134
"$CONTROLLER_REQUEST_CODE does not match what was given $uniqueRequestCode")
135
135
return
136
136
}
137
-
if (maybeReportErrorResultCodeCreate(resultCode,TAG,
137
+
if (maybeReportErrorResultCodeCreate(resultCode,
138
138
{ s, f -> cancelOrCallbackExceptionOrResult(s, f) }, { e ->this.executor.execute {
Copy file name to clipboardExpand all lines: credentials/credentials-play-services-auth/src/main/java/androidx/credentials/playservices/controllers/CredentialProviderController.kt
+8-10Lines changed: 8 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,6 @@ abstract class CredentialProviderController<T1 : Any, T2 : Any, R2 : Any, R1 : A
57
57
@JvmStatic
58
58
protectedfunmaybeReportErrorResultCodeCreate(
59
59
resultCode:Int,
60
-
type:String,
61
60
cancelOnError: (
62
61
CancellationSignal?,
63
62
() ->Unit
@@ -67,11 +66,11 @@ abstract class CredentialProviderController<T1 : Any, T2 : Any, R2 : Any, R1 : A
67
66
): Boolean {
68
67
if (resultCode !=Activity.RESULT_OK) {
69
68
var exception:CreateCredentialException=CreateCredentialUnknownException(
0 commit comments