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 282e542..1a1bcd3 100644
--- a/src/com/google/gct/login/GoogleLogin.java
+++ b/src/com/google/gct/login/GoogleLogin.java
@@ -33,6 +33,7 @@
 import com.intellij.openapi.extensions.Extensions;
 import com.intellij.openapi.progress.ProgressIndicator;
 import com.intellij.openapi.progress.Task;
+import com.intellij.openapi.progress.util.AbstractProgressIndicatorExBase;
 import com.intellij.openapi.progress.util.ProgressIndicatorBase;
 import com.intellij.openapi.project.Project;
 import com.intellij.openapi.ui.DialogWrapper;
@@ -328,7 +329,7 @@
           return;
         }
 
-        ((ProgressIndicatorEx)indicator).addStateDelegate(new ProgressIndicatorBase() {
+        ((ProgressIndicatorEx)indicator).addStateDelegate(new AbstractProgressIndicatorExBase() {
           @Override
           public void cancel() {
             assert uiFacade != null;