Skip to content

Commit 83bdc5f

Browse files
osiewiczdtolnay
andauthored
Omit return keyword in remove_entry
Co-authored-by: David Tolnay <[email protected]>
1 parent 89a2741 commit 83bdc5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ impl Map<String, Value> {
152152
String: Borrow<Q>,
153153
Q: ?Sized + Ord + Eq + Hash,
154154
{
155-
return self.map.remove_entry(key);
155+
self.map.remove_entry(key)
156156
}
157157

158158
/// Moves all elements from other into self, leaving other empty.

0 commit comments

Comments
 (0)