Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 7b030cd

Browse files
WliuWliu
Wliu
authored and
Wliu
committed
Start to fix specs
1 parent 86a9e70 commit 7b030cd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lib/directory-view.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,22 @@ class DirectoryView {
116116
createViewForEntry(entry) {
117117
const view = entry instanceof Directory ? new DirectoryView(entry) : new FileView(entry)
118118

119+
<<<<<<< HEAD
119120
const subscription = this.directory.onDidRemoveEntries(removedEntries => {
121+
=======
122+
this.subscriptions.add(this.directory.onDidRemoveEntries(removedEntries => {
123+
>>>>>>> Start to fix specs
120124
if (removedEntries.has(entry)) {
121125
view.element.remove()
122126
subscription.dispose()
123127
}
128+
<<<<<<< HEAD
124129
})
125130

126131
this.subscriptions.add(subscription)
132+
=======
133+
}))
134+
>>>>>>> Start to fix specs
127135

128136
return view
129137
}

0 commit comments

Comments
 (0)