Browse Source

Renames explorerNodes

main
Eric Amodio 7 years ago
parent
commit
da450a614d
5 changed files with 15 additions and 14 deletions
  1. +1
    -1
      src/commands/common.ts
  2. +0
    -0
      src/views/explorerNodes.ts
  3. +2
    -2
      src/views/gitExplorer.ts
  4. +3
    -2
      src/views/stashExplorer.ts

+ 1
- 1
src/commands/common.ts View File

@ -1,6 +1,6 @@
'use strict';
import { commands, Disposable, SourceControlResourceGroup, SourceControlResourceState, TextDocumentShowOptions, TextEditor, TextEditorEdit, Uri, window, workspace } from 'vscode';
import { ExplorerNode } from '../views/gitExplorerNodes';
import { ExplorerNode } from '../views/explorerNodes';
import { Logger } from '../logger';
import { Telemetry } from '../telemetry';

src/views/gitExplorerNodes.ts → src/views/explorerNodes.ts View File


+ 2
- 2
src/views/gitExplorer.ts View File

@ -1,10 +1,10 @@
'use strict';
import { Event, EventEmitter, ExtensionContext, TreeDataProvider, TreeItem, Uri, window } from 'vscode';
import { UriComparer } from '../comparers';
import { ExplorerNode, FileHistoryNode, RepositoryNode, ResourceType, StashNode } from './gitExplorerNodes';
import { ExplorerNode, FileHistoryNode, RepositoryNode, ResourceType, StashNode } from './explorerNodes';
import { GitService, GitUri } from '../gitService';
export * from './gitExplorerNodes';
export * from './explorerNodes';
export class GitExplorer implements TreeDataProvider<ExplorerNode> {

+ 3
- 2
src/views/stashExplorer.ts View File

@ -1,12 +1,13 @@
'use strict';
import { Event, EventEmitter, ExtensionContext, TreeDataProvider, TreeItem, Uri, window } from 'vscode';
import { ExplorerNode, StashNode } from './gitExplorerNodes';
import { ExplorerNode, StashNode } from './explorerNodes';
import { GitService, GitUri } from '../gitService';
import { StashCommitNode } from './stashCommitNode';
export * from './gitExplorerNodes';
export * from './explorerNodes';
export class StashExplorer implements TreeDataProvider<ExplorerNode> {
private _node: ExplorerNode;
private _onDidChangeTreeData = new EventEmitter<ExplorerNode>();
public get onDidChangeTreeData(): Event<StashCommitNode> {

Loading…
Cancel
Save