aboutsummaryrefslogtreecommitdiff
path: root/azalea-entity/src
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-06-25 16:40:12 -0500
committermat <github@matdoes.dev>2022-06-25 16:40:12 -0500
commit978880b756aa052226f77c21e8e9de9b40070152 (patch)
tree0f66b76beb4b8eac36a4c9c84cb3d5d8ed8bac35 /azalea-entity/src
parent460bdfb8bbaf0969df6451a00fc3de214728aec0 (diff)
downloadazalea-drasl-978880b756aa052226f77c21e8e9de9b40070152.tar.xz
Fix warnings
Diffstat (limited to 'azalea-entity/src')
-rw-r--r--azalea-entity/src/data.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-entity/src/data.rs b/azalea-entity/src/data.rs
index f8468ecf..c9083893 100644
--- a/azalea-entity/src/data.rs
+++ b/azalea-entity/src/data.rs
@@ -116,7 +116,7 @@ impl McBufReadable for EntityDataValue {
}
impl McBufWritable for EntityDataValue {
- fn write_into(&self, buf: &mut impl Write) -> Result<(), std::io::Error> {
+ fn write_into(&self, _buf: &mut impl Write) -> Result<(), std::io::Error> {
todo!();
}
}