Merge pull request #30540 from asottile/unnecessary_if

Remove unnecessary if in builder/dockerfiles/parser Dump
This commit is contained in:
Akihiro Suda 2017-01-30 11:18:10 +09:00 коммит произвёл GitHub
Родитель 8820d0aec0 2283cd0203
Коммит 14b9562c48
1 изменённых файлов: 5 добавлений и 7 удалений

Просмотреть файл

@ -21,13 +21,11 @@ func (node *Node) Dump() string {
str += "(" + n.Dump() + ")\n"
}
if node.Next != nil {
for n := node.Next; n != nil; n = n.Next {
if len(n.Children) > 0 {
str += " " + n.Dump()
} else {
str += " " + strconv.Quote(n.Value)
}
for n := node.Next; n != nil; n = n.Next {
if len(n.Children) > 0 {
str += " " + n.Dump()
} else {
str += " " + strconv.Quote(n.Value)
}
}