Skip to content

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
Signed-off-by: Artem Zatsarynnyi <azatsary@redhat.com>
  • Loading branch information
azatsarynnyy committed Nov 23, 2018
1 parent 8c173e0 commit 3810385
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/plugin-ext/src/plugin/types-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1090,14 +1090,14 @@ export class TreeItem {
contextValue?: string;

constructor(label: string, collapsibleState?: theia.TreeItemCollapsibleState)
constructor(resourceUri: URI, collapsibleState?: theia.TreeItemCollapsibleState)
constructor(arg1: string | URI, public collapsibleState: theia.TreeItemCollapsibleState = TreeItemCollapsibleState.None) {
if (arg1 instanceof URI) {
this.resourceUri = arg1;
} else {
this.label = arg1;
}
}
constructor(resourceUri: URI, collapsibleState?: theia.TreeItemCollapsibleState)
constructor(arg1: string | URI, public collapsibleState: theia.TreeItemCollapsibleState = TreeItemCollapsibleState.None) {
if (arg1 instanceof URI) {
this.resourceUri = arg1;
} else {
this.label = arg1;
}
}
}

export enum TreeItemCollapsibleState {
Expand Down

0 comments on commit 3810385

Please sign in to comment.