PistonDevelopers / hematite_server

A Minecraft server clone
http://hematite.piston.rs/
MIT License
141 stars 16 forks source link

Replace ReadExactly trait with read_exact from std #112

Closed fenhl closed 8 years ago

fenhl commented 8 years ago

Rust 1.6 stabilized std::io::Read::read_exact, so we don't need our util::ReadExactly trait which basically did the same thing anymore. This pull request replaces every read_exactly call with the equivalent read_exact call, and removes the trait.

toqueteos commented 8 years ago

Finally, v1.6 is here! LGTM :tada: