Skip to content

Commit c4b0a5a

Browse files
committed
Removed unneded var declarations.
1 parent a85c8fd commit c4b0a5a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/src/workflow/node.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ class WorkflowNode {
3535
);
3636

3737
factory WorkflowNode.fromJSON(Map<String, dynamic> json) {
38-
int x;
39-
int y;
40-
4138
final id = json['id'] as int;
4239
final type = json['type'] as String;
4340
final pos = json['pos'].map<double>((item) => item as double).toList();

0 commit comments

Comments
 (0)