diff options
Diffstat (limited to 'azalea-core/src')
| -rwxr-xr-x | azalea-core/src/bitset.rs | 4 |
1 files changed, 1 insertions, 3 deletions
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}", ); } |
