diff options
Diffstat (limited to 'src/lombok/core/LombokNode.java')
-rw-r--r-- | src/lombok/core/LombokNode.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lombok/core/LombokNode.java b/src/lombok/core/LombokNode.java index e4712313..c8ee4c00 100644 --- a/src/lombok/core/LombokNode.java +++ b/src/lombok/core/LombokNode.java @@ -125,8 +125,8 @@ public abstract class LombokNode<A extends AST<A, L, N>, L extends LombokNode<A, * Also affects the underlying (Eclipse/javac) AST. */ @SuppressWarnings("unchecked") - public L replaceWith(N newN, Kind kind) { - L newNode = ast.buildTree(newN, kind); + public L replaceWith(N newN, Kind newNodeKind) { + L newNode = ast.buildTree(newN, newNodeKind); newNode.parent = parent; for (int i = 0; i < parent.children.size(); i++) { if (parent.children.get(i) == this) ((List)parent.children).set(i, newNode); @@ -227,8 +227,8 @@ public abstract class LombokNode<A extends AST<A, L, N>, L extends LombokNode<A, * Does not change the underlying (javac/Eclipse) AST, only the wrapped view. */ @SuppressWarnings("unchecked") - public L add(N newChild, Kind kind) { - L n = ast.buildTree(newChild, kind); + public L add(N newChild, Kind newChildKind) { + L n = ast.buildTree(newChild, newChildKind); if (n == null) return null; n.parent = (L) this; ((List)children).add(n); |