Skip to content

Commit 5c9df6a

Browse files
authored
chore: Clean up unused fields in mover.ts. (#605)
* chore: Clean up unused fields in mover.ts. * chore: Remove unused import.
1 parent 8e2b18e commit 5c9df6a

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/actions/mover.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import type {
88
BlockSvg,
99
IDragger,
1010
IDragStrategy,
11-
Gesture,
1211
RenderedConnection,
1312
} from 'blockly';
1413
import {
@@ -55,18 +54,6 @@ export class Mover {
5554
*/
5655
protected moves: Map<WorkspaceSvg, MoveInfo> = new Map();
5756

58-
/**
59-
* The stashed isDragging function, which is replaced at the beginning
60-
* of a keyboard drag and reset at the end of a keyboard drag.
61-
*/
62-
oldIsDragging: (() => boolean) | null = null;
63-
64-
/**
65-
* The stashed getGesture function, which is replaced at the beginning
66-
* of a keyboard drag and reset at the end of a keyboard drag.
67-
*/
68-
oldGetGesture: ((e: PointerEvent) => Gesture | null) | null = null;
69-
7057
/**
7158
* The block's base drag strategy, which will be overridden during
7259
* keyboard drags and reset at the end of the drag.

0 commit comments

Comments
 (0)