Skip to content

Commit

Permalink
Fix incorrect import in split-widget.ts
Browse files Browse the repository at this point in the history
`Emitter` was incorrectly imported from 'vscode-languageserver-protocol'
instead of 'common'.
  • Loading branch information
pisv committed Sep 29, 2024
1 parent b80aa74 commit 0252f9c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/core/src/browser/widgets/split-widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************

import { Emitter } from 'vscode-languageserver-protocol';
import { ApplicationShell, StatefulWidget } from '../shell';
import { BaseWidget, Message, PanelLayout, SplitPanel, Widget } from './widget';
import { CompositeSaveable, Saveable, SaveableSource } from '../saveable';
import { Navigatable } from '../navigatable-types';
import { URI } from '../../common';
import { Emitter, URI } from '../../common';

/**
* A widget containing a number of panes in a split layout.
Expand Down

0 comments on commit 0252f9c

Please sign in to comment.