Skip to content

Commit 49ecee0

Browse files
committed
Apply clippy suggestions
1 parent 8877a27 commit 49ecee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/contour.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ impl ContourBuilder {
183183
.for_each(drop);
184184
}
185185
linestrings.push(LineString(ring));
186-
}).for_each(drop);
186+
})
187+
.for_each(drop);
187188
Ok(Line {
188189
geometry: MultiLineString(linestrings),
189190
threshold,
@@ -325,7 +326,6 @@ impl Line {
325326
foreign_members: None,
326327
}
327328
}
328-
329329
}
330330

331331
/// A contour has the geometry and threshold of a contour ring, built by [`ContourBuilder`].

0 commit comments

Comments
 (0)