syntax: get rid of redundant case

This commit is contained in:
Lindsey Kuper 2012-05-31 10:43:11 -07:00
parent 6ef458252b
commit abef5f54c9

View file

@ -639,8 +639,6 @@ class parser {
fn parse_mutability() -> mutability {
if self.eat_keyword("mut") {
m_mutbl
} else if self.eat_keyword("mut") {
m_mutbl
} else if self.eat_keyword("const") {
m_const
} else {