Remove an unused variable

This commit is contained in:
Erick Tryzelaar 2015-03-20 08:47:48 -07:00
parent 09de237033
commit 17c295680e

View File

@ -399,7 +399,7 @@ mod deserializer {
Some(State::OptionState(true)) => {
visitor.visit_some(self)
}
Some(token) => Err(Error::SyntaxError),
Some(_) => Err(Error::SyntaxError),
None => Err(Error::EndOfStream),
}
}