Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.part.ViewPart;

import io.reactivex.rxjava3.disposables.Disposable;
import software.aws.toolkits.eclipse.amazonq.broker.api.EventObserver;
import software.aws.toolkits.eclipse.amazonq.plugin.Activator;
import software.aws.toolkits.eclipse.amazonq.views.actions.AmazonQStaticActions;
Expand All @@ -26,11 +25,10 @@ public final class AmazonQViewContainer extends ViewPart implements EventObserve
public static final String ID = "software.aws.toolkits.eclipse.amazonq.views.AmazonQViewContainer";

private Composite parentComposite;
private StackLayout layout;
private volatile StackLayout layout;
private Map<AmazonQViewType, BaseAmazonQView> views;
private AmazonQViewType activeViewType;
private BaseAmazonQView currentView;
private Disposable activeViewTypeSubscription;
private volatile AmazonQViewType activeViewType;
private volatile BaseAmazonQView currentView;
private final ReentrantLock containerLock;

public AmazonQViewContainer() {
Expand Down