Skip to content

Commit

Permalink
Remove console.log's
Browse files Browse the repository at this point in the history
  • Loading branch information
joswarmer committed Dec 2, 2024
1 parent 8fb5e60 commit 0702ce2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/meta/src/parsergen/parserTemplates/ParserGenUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,13 @@ export class ParserGenUtil {
projection.location = (!!parserProjection.location ? parserProjection.location : defaultProjection.location);

parserProjection.projections.forEach(p => {
console.log("Pushing from parser: " + p.classifier?.name)
projection.projections.push(p)
} )
defaultProjection.projections.forEach(defaultProj => {
const found = parserProjection.projections.find(existingProj =>
existingProj.classifier?.referred === defaultProj.classifier?.referred);
if (found === undefined) {
console.log("Pushing from default: " + defaultProj.classifier?.name)
projection.projections.push(defaultProj);
} else {
console.log("Found from parser: " + defaultProj.classifier?.name)
}
});
return projection;
Expand Down

0 comments on commit 0702ce2

Please sign in to comment.