Skip to content

Commit ba276c4

Browse files
committed
fmt: cargo
1 parent fec6cd9 commit ba276c4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

float-pigment-forest/src/node.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ impl Node {
286286
if let Some(cache) = self.measure_cache() {
287287
cache.clear();
288288
}
289-
290289
}
291290

292291
#[inline(always)]

float-pigment-forest/tests/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ impl TestCtx {
280280
};
281281
let mut node_props = NodeProperties::new(parent_node_props);
282282
if let Some(style) = e.attributes().get("style") {
283-
unsafe { TestCtx::set_style(&*node, &style, &mut node_props, parent_node_props); }
283+
unsafe {
284+
TestCtx::set_style(&*node, &style, &mut node_props, parent_node_props);
285+
}
284286
}
285287
self.set_expect_layout_pos(node, e.attributes());
286288
e.children_mut().iter().for_each(|item| {

0 commit comments

Comments
 (0)