Skip to content

Commit

Permalink
fix: [MergeNodeParser] Fix does not re-applyIrisApiId when isFilterOv…
Browse files Browse the repository at this point in the history
…erloadFunctions is true
  • Loading branch information
littleGnAl committed Jan 17, 2024
1 parent 2e8a2d5 commit 98cda9b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/parsers/merge_node_parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,11 @@ export function MergeNodeParser(

return it;
});

// Re-apply the iris api id after merging.
targetClazz!.asClazz().methods.forEach((it) => {
applyIrisApiId(targetClazz!.asClazz(), it);
});
}
// Re-apply the iris api id after merging.
targetClazz!.asClazz().methods.forEach((it) => {
applyIrisApiId(targetClazz!.asClazz(), it);
});
}
}
}
Expand Down

0 comments on commit 98cda9b

Please sign in to comment.