Browse Source

Removes commented out code

main
Eric Amodio 4 years ago
parent
commit
e54709be9c
5 changed files with 0 additions and 15 deletions
  1. +0
    -3
      src/views/branchesView.ts
  2. +0
    -3
      src/views/contributorsView.ts
  3. +0
    -3
      src/views/remotesView.ts
  4. +0
    -3
      src/views/stashesView.ts
  5. +0
    -3
      src/views/tagsView.ts

+ 0
- 3
src/views/branchesView.ts View File

@ -118,9 +118,6 @@ export class BranchesRepositoryNode extends SubscribeableViewNode
e.changed(RepositoryChange.Remotes)
) {
void this.triggerChange(true);
// if (this.root) {
// void this.parent?.triggerChange(true);
// }
}
}
}

+ 0
- 3
src/views/contributorsView.ts View File

@ -95,9 +95,6 @@ export class ContributorsRepositoryNode extends SubscribeableViewNode
if (e.changed(RepositoryChange.Config) || e.changed(RepositoryChange.Heads)) {
void this.triggerChange(true);
// if (this.root) {
// void this.parent?.triggerChange(true);
// }
}
}
}

+ 0
- 3
src/views/remotesView.ts View File

@ -111,9 +111,6 @@ export class RemotesRepositoryNode extends SubscribeableViewNode {
if (e.changed(RepositoryChange.Config) || e.changed(RepositoryChange.Remotes)) {
void this.triggerChange(true);
// if (this.root) {
// void this.parent?.triggerChange(true);
// }
}
}
}

+ 0
- 3
src/views/stashesView.ts View File

@ -99,9 +99,6 @@ export class StashesRepositoryNode extends SubscribeableViewNode {
if (e.changed(RepositoryChange.Config) || e.changed(RepositoryChange.Stash)) {
void this.triggerChange(true);
// if (this.root) {
// void this.parent?.triggerChange(true);
// }
}
}
}

+ 0
- 3
src/views/tagsView.ts View File

@ -99,9 +99,6 @@ export class TagsRepositoryNode extends SubscribeableViewNode {
if (e.changed(RepositoryChange.Config) || e.changed(RepositoryChange.Tags)) {
void this.triggerChange(true);
// if (this.root) {
// void this.parent?.triggerChange(true);
// }
}
}
}

Loading…
Cancel
Save