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

* commit '6b597de1b9b215b3609a8b35d84ede963c7e7151':
  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.
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 @@
 
       // 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.");
       }
     }
   }