plugin/src/software/aws/toolkits/eclipse/amazonq/views/ChatAssetMissingView.java [47:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        headerLabel.setFont(font);

        headerLabel.addDisposeListener(e -> {
            if (font != null && !font.isDisposed()) {
                font.dispose();
            }
        });

        Label detailLabel = new Label(container, SWT.CENTER | SWT.WRAP);
        detailLabel.setText(DETAIL_MESSAGE);
        detailLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));

        setupAmazonQStaticActions();

        return container;
    }

    @Override
    public void dispose() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



plugin/src/software/aws/toolkits/eclipse/amazonq/views/LspStartUpFailedView.java [49:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        headerLabel.setFont(font);

        headerLabel.addDisposeListener(e -> {
            if (font != null && !font.isDisposed()) {
                font.dispose();
            }
        });

        Label detailLabel = new Label(container, SWT.CENTER | SWT.WRAP);
        detailLabel.setText(DETAIL_MESSAGE);
        detailLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));

        setupAmazonQStaticActions();

        return container;
    }

    @Override
    public void dispose() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



