1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

Remove todo

This commit is contained in:
mo8it 2024-04-10 14:35:42 +02:00
parent 193e0a03b2
commit b3642b0219

View File

@ -33,7 +33,6 @@ impl StateFile {
}
fn write(&self) -> Result<()> {
// TODO: Capacity
let mut buf = Vec::with_capacity(1024);
serde_json::ser::to_writer(&mut buf, self).context("Failed to serialize the state")?;
fs::write(".rustlings-state.json", buf)