Skip to content

Commit

Permalink
#16 chore: Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsobspinto committed Aug 1, 2022
1 parent 988ca22 commit 1ab69b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/models/MetaLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export class MetaLink implements ILink {
variant: string,
options: Map<string, any>
) {
if (options == undefined){
options = new Map<string, any>()
if (options == undefined) {
options = new Map<string, any>();
}
this.sourceId = sourceId;
this.sourcePortId = sourcePortId;
Expand Down
4 changes: 2 additions & 2 deletions src/models/MetaNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export class MetaNode {
variant: string,
options: Map<string, any>
) {
if (options == undefined){
options = new Map<string, any>()
if (options == undefined) {
options = new Map<string, any>();
}
this.children = [];
options.set('position', position);
Expand Down

0 comments on commit 1ab69b1

Please sign in to comment.