From e10afd4f1d3c363d51a6d1c94da4b66a035446da Mon Sep 17 00:00:00 2001 From: Shruti Sinha Date: Thu, 26 Sep 2024 13:09:06 -0700 Subject: [PATCH] indent fix 2 --- .../eclipse/amazonq/views/AmazonQView.java | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/plugin/src/software/aws/toolkits/eclipse/amazonq/views/AmazonQView.java b/plugin/src/software/aws/toolkits/eclipse/amazonq/views/AmazonQView.java index a134eea4..6f2d6314 100644 --- a/plugin/src/software/aws/toolkits/eclipse/amazonq/views/AmazonQView.java +++ b/plugin/src/software/aws/toolkits/eclipse/amazonq/views/AmazonQView.java @@ -104,11 +104,11 @@ private void setupActions(final Browser browser, final boolean isLoggedIn) { amazonQCommonActions = new AmazonQCommonActions(browser, isLoggedIn, getViewSite()); } - private void setupAuthStatusListeners() { - authStatusChangedListener = this::handleAuthStatusChange; - AuthUtils.addAuthStatusChangeListener(amazonQCommonActions.getSignoutAction()); - AuthUtils.addAuthStatusChangeListener(amazonQCommonActions.getFeedbackDialogContributionAction()); - } + private void setupAuthStatusListeners() { + authStatusChangedListener = this::handleAuthStatusChange; + AuthUtils.addAuthStatusChangeListener(amazonQCommonActions.getSignoutAction()); + AuthUtils.addAuthStatusChangeListener(amazonQCommonActions.getFeedbackDialogContributionAction()); + } /** * Sets up virtual host mapping for the given path using jetty server @@ -158,16 +158,16 @@ public final void setFocus() { browser.setFocus(); } - /** - * Disposes of the resources associated with this view. - * - * This method is called when the view is closed. It removes the authentication - * status change listener and the selection listener from the page. - */ - @Override - public void dispose() { - AuthUtils.removeAuthStatusChangeListener(authStatusChangedListener); - super.dispose(); - } + /** + * Disposes of the resources associated with this view. + * + * This method is called when the view is closed. It removes the authentication + * status change listener and the selection listener from the page. + */ + @Override + public void dispose() { + AuthUtils.removeAuthStatusChangeListener(authStatusChangedListener); + super.dispose(); + } }