mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Remove some unused variables
These miseed the lint rule as they were merged between the last rebase and deploy. GitOrigin-RevId: 16b1117d56f2fc824509b9a0f340dba2ede9902f
This commit is contained in:
@@ -41,7 +41,7 @@ export const shareDocState = StateField.define<HistoryOTShareDoc | null>({
|
||||
return null
|
||||
},
|
||||
|
||||
update(value, transaction) {
|
||||
update(value) {
|
||||
// this state is constant
|
||||
return value
|
||||
},
|
||||
@@ -134,7 +134,7 @@ class ChangeDeletedWidget extends WidgetType {
|
||||
return widget
|
||||
}
|
||||
|
||||
eq(old: ChangeDeletedWidget) {
|
||||
eq() {
|
||||
return true
|
||||
}
|
||||
}
|
||||
@@ -407,7 +407,7 @@ class PositionMapper {
|
||||
})
|
||||
this.offsets.toCM6.push({
|
||||
pos: change.range.pos,
|
||||
map: pos => deletePos - oldOffset,
|
||||
map: () => deletePos - oldOffset,
|
||||
})
|
||||
this.offsets.toCM6.push({
|
||||
pos: change.range.pos + deleteLength,
|
||||
|
||||
Reference in New Issue
Block a user