Skip to content

Commit 757411c

Browse files
committed
chore(cleanup): Remove unused lock variable from SessionConnection
Signed-off-by: Jonas <jonas@freesources.org>
1 parent 986bc74 commit 757411c

1 file changed

Lines changed: 2 additions & 11 deletions

File tree

src/services/SessionConnection.js

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,15 @@ export class SessionConnection {
2020
#documentState
2121
#document
2222
#session
23-
#lock
2423
#readOnly
2524
#hasOwner
2625
connection
2726

2827
constructor(data, connection) {
29-
const {
30-
document,
31-
session,
32-
lock,
33-
readOnly,
34-
content,
35-
documentState,
36-
hasOwner,
37-
} = data
28+
const { document, session, readOnly, content, documentState, hasOwner } =
29+
data
3830
this.#document = document
3931
this.#session = session
40-
this.#lock = lock
4132
this.#readOnly = readOnly
4233
this.#content = content
4334
this.#documentState = documentState

0 commit comments

Comments
 (0)