Skip to content

Commit f93ad8a

Browse files
committed
Reduce unused exports (microsoft#164935)
1 parent d1c401c commit f93ad8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/workbench/browser/parts/editor/editorStatus.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@ export class ChangeLanguageAction extends Action {
13221322
}
13231323
}
13241324

1325-
export interface IChangeEOLEntry extends IQuickPickItem {
1325+
interface IChangeEOLEntry extends IQuickPickItem {
13261326
eol: EndOfLineSequence;
13271327
}
13281328

src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { Dimension } from 'vs/base/browser/dom';
1616
import { EditorInputCapabilities, IUntypedEditorInput } from 'vs/workbench/common/editor';
1717
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
1818

19-
export class WalkThroughModel extends EditorModel {
19+
class WalkThroughModel extends EditorModel {
2020

2121
constructor(
2222
private mainRef: string,

0 commit comments

Comments
 (0)