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

Commit 089acd6

Browse files
WliuWliu
Wliu
authored and
Wliu
committed
Fix remaining specs
1 parent 7b030cd commit 089acd6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lib/directory-view.js

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

119+
<<<<<<< HEAD
119120
<<<<<<< HEAD
120121
const subscription = this.directory.onDidRemoveEntries(removedEntries => {
121122
=======
122123
this.subscriptions.add(this.directory.onDidRemoveEntries(removedEntries => {
123124
>>>>>>> Start to fix specs
125+
=======
126+
const subscription = this.directory.onDidRemoveEntries(removedEntries => {
127+
>>>>>>> Fix remaining specs
124128
if (removedEntries.has(entry)) {
125129
view.element.remove()
126130
subscription.dispose()
127131
}
132+
<<<<<<< HEAD
128133
<<<<<<< HEAD
129134
})
130135

131136
this.subscriptions.add(subscription)
132137
=======
133138
}))
134139
>>>>>>> Start to fix specs
140+
=======
141+
})
142+
143+
this.subscriptions.add(subscription)
144+
>>>>>>> Fix remaining specs
135145

136146
return view
137147
}

0 commit comments

Comments
 (0)