| Index: compiler/java/com/google/dart/compiler/ast/DartTypeParameter.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartTypeParameter.java b/compiler/java/com/google/dart/compiler/ast/DartTypeParameter.java
|
| index 58a0c2920c3a0f696369f83252a5d0131ee2b5c4..38ff64187a57000bd5f10f10bf0c36b9070a5ba7 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartTypeParameter.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartTypeParameter.java
|
| @@ -25,9 +25,7 @@ public class DartTypeParameter extends DartDeclaration<DartIdentifier> {
|
| @Override
|
| public void visitChildren(ASTVisitor<?> visitor) {
|
| super.visitChildren(visitor);
|
| - if (bound != null) {
|
| - bound.accept(visitor);
|
| - }
|
| + safelyVisitChild(bound, visitor);
|
| }
|
|
|
| @Override
|
|
|