From 44521a7c8cc77adc82b13269e24127e2ed645441 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 24 Apr 2018 21:09:28 +0200 Subject: [PATCH] Dont use "return" keyword at end of function --- lib/core/libimagstore/src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/libimagstore/src/store.rs b/lib/core/libimagstore/src/store.rs index 8a939df1..11a18c3d 100644 --- a/lib/core/libimagstore/src/store.rs +++ b/lib/core/libimagstore/src/store.rs @@ -131,7 +131,7 @@ impl Iterator for Walk { } } - return None; + None } }