chore: sonar

This commit is contained in:
mathuo 2024-11-03 19:14:49 +00:00
parent 3f5c9743ad
commit d8ae04e274
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281
3 changed files with 2 additions and 5 deletions

View File

@ -592,12 +592,9 @@ export class DockviewComponent
}
);
let windowExplicitlyClosed = false;
const popoutWindowDisposable = new CompositeDisposable(
_window,
_window.onDidClose(() => {
windowExplicitlyClosed = true;
popoutWindowDisposable.dispose();
})
);

View File

@ -2,7 +2,7 @@ import { DockviewPanelApi } from '../api/dockviewPanelApi';
import { PanelInitParameters, IPanel } from '../panel/types';
import { DockviewApi } from '../api/component.api';
import { Optional } from '../types';
import { DockviewGroupPanel, IDockviewGroupPanel } from './dockviewGroupPanel';
import { IDockviewGroupPanel } from './dockviewGroupPanel';
import { DockviewPanelRenderer } from '../overlay/overlayRenderContainer';
export interface HeaderPartInitParameters {

View File

@ -101,7 +101,7 @@ export class Splitview {
private readonly viewContainer: HTMLElement;
private readonly sashContainer: HTMLElement;
private readonly viewItems: ViewItem[] = [];
private sashes: ISashItem[] = [];
private readonly sashes: ISashItem[] = [];
private _orientation: Orientation;
private _size = 0;
private _orthogonalSize = 0;