summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Wulfe <benwu@google.com>2015-01-28 17:49:23 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-01-28 17:49:23 +0000
commit915d2a0a05fa7531748bb0cc33c4dcfaa3ce8f1c (patch)
treeca67d837791f472acdf1d284829c582971f19359
parent590ec36d404a9efaf53c48e2159b90683b44a911 (diff)
parent04285010a9ebcf288de7e1052fe3ea5950da1527 (diff)
downloadlogin-915d2a0a05fa7531748bb0cc33c4dcfaa3ce8f1c.tar.gz
Remove the error dialog when oauth scopes change. Feedback is that its more user friendly not to present the user with this and just let him log back in when required. automerge: 6b597de
automerge: 0428501 * commit '04285010a9ebcf288de7e1052fe3ea5950da1527': Remove the error dialog when oauth scopes change. Feedback is that its more user friendly not to present the user with this and just let him log back in when required.
-rw-r--r--src/com/google/gct/login/GoogleLogin.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/google/gct/login/GoogleLogin.java b/src/com/google/gct/login/GoogleLogin.java
index e5f1a76..1a1bcd3 100644
--- a/src/com/google/gct/login/GoogleLogin.java
+++ b/src/com/google/gct/login/GoogleLogin.java
@@ -742,8 +742,9 @@ public class GoogleLogin {
// Log removed users
if (!removedUsers.isEmpty()) {
- String message = "The following user(s) had expired authentication scopes: " + removedUsers + "and have been logged out.";
- GoogleLoginUtils.showErrorDialog(message, "Google Login");
+ LOG.info("The following user(s) had expired authentication scopes: "
+ + removedUsers
+ + "and have been logged out.");
}
}
}