From 8d9f827e9b2e5a0c001244d2f576bc45e75e1548 Mon Sep 17 00:00:00 2001 From: Mohamed Hayibor Date: Sun, 21 Aug 2016 17:24:49 -0400 Subject: Remove extraneous return statements --- src/cell.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cell.rs') diff --git a/src/cell.rs b/src/cell.rs index 29aa3e3..beb6a4a 100644 --- a/src/cell.rs +++ b/src/cell.rs @@ -31,12 +31,12 @@ impl Cell { width = l; } } - return Cell { + Cell { content: content, width: width, align: align, style: Vec::new() - }; + } } /// Create a new `Cell` initialized with content from `string`. -- cgit v1.2.3