Auto merge of #15509 - heycam:rm-warning, r=emilio

stylo: Remove useless traverse_subtree call warning.

This warning isn't useful now that we call into traverse_subtree to do the check of the dirty bits, rather than checking them up on the Gecko side.  The crashtest job is currently failing in part due to the log file exceeding 50MB because of this warning.

r? @bholley

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15509)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-02-11 01:55:15 -08:00 committed by GitHub
commit d010d2c675

View file

@ -140,7 +140,6 @@ fn traverse_subtree(element: GeckoElement, raw_data: RawServoStyleSetBorrowed,
let token = RecalcStyleOnly::pre_traverse(element, &per_doc_data.stylist, unstyled_children_only);
if !token.should_traverse() {
error!("Unnecessary call to traverse_subtree");
return;
}