Remove unused argument

This commit is contained in:
Max Goodman
2020-06-22 13:08:49 -07:00
committed by Max Goodhart
parent 001b57eac3
commit 3759b05915

View File

@@ -216,7 +216,7 @@ export default class StreamWindow extends EventEmitter {
}
}
findViewByIdx(viewIdx, predicate) {
findViewByIdx(viewIdx) {
return this.views.find(
(v) =>
v.state.context.pos && v.state.context.pos.spaces.includes(viewIdx),