From da19f0174b99db02e50d2f1db8aae6245d7981ca Mon Sep 17 00:00:00 2001 From: Arne Dußin Date: Wed, 25 Nov 2020 22:16:46 +0100 Subject: Fix clippy lints and add polygon tool button icon --- src/tool/polygon_room_tool.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/tool/polygon_room_tool.rs') diff --git a/src/tool/polygon_room_tool.rs b/src/tool/polygon_room_tool.rs index 58f326f..42874e8 100644 --- a/src/tool/polygon_room_tool.rs +++ b/src/tool/polygon_room_tool.rs @@ -33,9 +33,8 @@ impl UnfinishedPolygon { // TODO: Is this possible without changing the mutability of self and without reallocation? let mut corners = self.corners.clone(); corners.push(self.working_corner); - let res = Polygon::check_validity(&corners); - res + Polygon::check_validity(&corners) } pub fn try_into_completed(&mut self) -> Option> { @@ -65,7 +64,7 @@ impl UnfinishedPolygon { } pub fn try_push_working(&mut self) -> Result<(), PolygonError> { - assert!(self.corners.len() >= 1); + assert!(!self.corners.is_empty()); if self.corners.len() == 1 { return if self.corners[0] != self.working_corner { -- cgit v1.2.3-70-g09d2