1
0
mirror of https://github.com/golang/go synced 2024-11-18 12:54:44 -07:00

removed bogus if-statement

R=iant
DELTA=3  (0 added, 3 deleted, 0 changed)
OCL=30251
CL=30251
This commit is contained in:
Robert Griesemer 2009-06-12 15:17:39 -07:00
parent cbd0092173
commit be87e33b1f

View File

@ -465,9 +465,6 @@ func (p *parser) parseStructType() *ast.StructType {
break;
}
}
if p.tok == token.SEMICOLON {
p.next();
}
rbrace = p.expect(token.RBRACE);
p.opt_semi = true;