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:
Andrew Rumble
2025-06-10 10:10:55 +01:00
committed by Copybot
parent c23e84eb37
commit c227c1e2d9

View File

@@ -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,