1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 09:04:13 +02:00

caching of parsed static baselines

This commit is contained in:
Robin Appelman 2017-09-16 16:20:21 +02:00
commit 358aa6aa21
2 changed files with 6 additions and 9 deletions

View file

@ -67,7 +67,7 @@ export class PacketEntity {
if (existingProp) {
existingProp.value = prop.value;
} else {
this.props.push(prop);
this.props.push(prop.clone());
}
}
}