From c652bbc6091212811133466914e7ef39e61a7b21 Mon Sep 17 00:00:00 2001 From: mat Date: Sat, 21 Jan 2023 22:25:22 -0600 Subject: clippy --- azalea-core/src/bitset.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'azalea-core/src') diff --git a/azalea-core/src/bitset.rs b/azalea-core/src/bitset.rs index 266bdc62..b45a18d2 100755 --- a/azalea-core/src/bitset.rs +++ b/azalea-core/src/bitset.rs @@ -25,9 +25,7 @@ impl BitSet { fn check_range(&self, from_index: usize, to_index: usize) { assert!( from_index <= to_index, - "fromIndex: {} > toIndex: {}", - from_index, - to_index + "fromIndex: {from_index} > toIndex: {to_index}", ); } -- cgit v1.2.3