style: Fix whitespace issue in the rule tree code.

This commit is contained in:
Emilio Cobos Álvarez 2017-05-21 02:49:40 +02:00
parent d98abe1397
commit e448c4a27e
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -684,7 +684,7 @@ impl StrongRuleNode {
let mut last = None;
// TODO(emilio): We could avoid all the refcount churn here.
for child in self.get().iter_children() {
if child .get().level == level &&
if child.get().level == level &&
child.get().source.as_ref().unwrap().ptr_equals(&source) {
return child;
}