Chromium Code Reviews| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java |
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java |
| index 41ea707e1fa098b09807036834c2fcc61cb4fdf2..283cc586fde508daa358ce1941bcd3b0176d6350 100644 |
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java |
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java |
| @@ -101,7 +101,7 @@ public abstract class ASTNode { |
| * |
| * @return the parent of this node, or {@code null} if none |
| */ |
| - public final ASTNode getParent() { |
| + public ASTNode getParent() { |
|
Brian Wilkerson
2013/01/07 21:27:18
Why did you remove the "final" modifier?
scheglov
2013/01/07 22:45:41
To be able to mock it.
|
| return parent; |
| } |