diff options
| author | mat <github@matdoes.dev> | 2022-06-25 16:40:12 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-06-25 16:40:12 -0500 |
| commit | 978880b756aa052226f77c21e8e9de9b40070152 (patch) | |
| tree | 0f66b76beb4b8eac36a4c9c84cb3d5d8ed8bac35 /azalea-core/src | |
| parent | 460bdfb8bbaf0969df6451a00fc3de214728aec0 (diff) | |
| download | azalea-drasl-978880b756aa052226f77c21e8e9de9b40070152.tar.xz | |
Fix warnings
Diffstat (limited to 'azalea-core/src')
| -rw-r--r-- | azalea-core/src/particle/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-core/src/particle/mod.rs b/azalea-core/src/particle/mod.rs index 3b2e9807..46f88407 100644 --- a/azalea-core/src/particle/mod.rs +++ b/azalea-core/src/particle/mod.rs @@ -256,7 +256,7 @@ impl McBufReadable for ParticleData { } impl McBufWritable for ParticleData { - 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!() } } |
