Remove superflous if statement
parent
6bd4e4bd7c
commit
72aea2613a
|
@ -118,8 +118,6 @@ func (p *actionParser) Parse() ([]*action, error) {
|
||||||
a, err := p.parseAction()
|
a, err := p.parseAction()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
} else if a == nil {
|
|
||||||
return actions, err
|
|
||||||
}
|
}
|
||||||
actions = append(actions, a)
|
actions = append(actions, a)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue