summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Wulfe <benwu@google.com>2015-01-27 15:48:40 -0500
committerBenjamin Wulfe <benwu@google.com>2015-01-27 17:35:16 -0500
commit6b597de1b9b215b3609a8b35d84ede963c7e7151 (patch)
treeb05ccb7a03b16649a2cbb9d3e65a286e94414828
parent94135a607b751a02cae2d678c305786df978959f (diff)
downloadlogin-6b597de1b9b215b3609a8b35d84ede963c7e7151.tar.gz
Remove the error dialog when oauth scopes change.studio-1.1-dev
Feedback is that its more user friendly not to present the user with this and just let him log back in when required. Change-Id: I85e31a9156cda24a51df2c4ea0040ae0a89f696c
-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 ce5b745..282e542 100644
--- a/src/com/google/gct/login/GoogleLogin.java
+++ b/src/com/google/gct/login/GoogleLogin.java
@@ -741,8 +741,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.");
}
}
}