Skip to content

Commit

Permalink
Add #140 to CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
renggli committed Mar 26, 2022
1 parent 8afc3a4 commit 7829586
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@
* Use the pull-based parser for all parsing operations:
* Operations like `XmlDocument.parse(String input)` are up to 30% faster!
* Reduce size of library by removing duplicated parsing and validation functionality.
* Fix entity decoding if the entity spawns multiple chunks.
* Cleanup dynamic calls and type declarations:
* Avoid all dynamic calls across the library (thanks to https://github.com/srawlins).
* Remove deprecated `XmlTransformer` as it requires dynamic calls in the `XmlVisitor`.
Expand Down
1 change: 0 additions & 1 deletion lib/src/xml_events/streams/normalizer.dart
Expand Up @@ -44,7 +44,6 @@ class _XmlNormalizeEventsSink extends ChunkedConversionSink<List<XmlEvent>> {
// Propagate annotations.
event.attachBuffer(event1.buffer);
event.attachLocation(event1.start, event2.stop);
assert(event1.parent == event2.parent);
event.attachParent(event1.parent);
// Update the buffer.
buffer[i] = event;
Expand Down

0 comments on commit 7829586

Please sign in to comment.