aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2023-01-21 22:25:22 -0600
committermat <github@matdoes.dev>2023-01-21 22:25:22 -0600
commitc652bbc6091212811133466914e7ef39e61a7b21 (patch)
treec2eef8d242e07054af9ae9df6f8af7a6a3e630f2 /azalea-core/src
parent9ee5e71bb13e596248fde000d8717c86276b0ce1 (diff)
downloadazalea-drasl-c652bbc6091212811133466914e7ef39e61a7b21.tar.xz
clippy
Diffstat (limited to 'azalea-core/src')
-rwxr-xr-xazalea-core/src/bitset.rs4
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}",
);
}