diff options
author | Roel Spilker <r.spilker@gmail.com> | 2021-04-23 00:01:55 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2021-04-23 00:01:55 +0200 |
commit | 6758714ed564d72236564889157c4812eacb96fb (patch) | |
tree | c6160f835c59dd2055ed026e09eec5d9e90eb4fa /src/utils/lombok | |
parent | 5120abe4741c78d19d7e65404f407cfe57074a47 (diff) | |
download | lombok-6758714ed564d72236564889157c4812eacb96fb.tar.gz lombok-6758714ed564d72236564889157c4812eacb96fb.tar.bz2 lombok-6758714ed564d72236564889157c4812eacb96fb.zip |
Change owner lombok GitHub repository
Diffstat (limited to 'src/utils/lombok')
-rw-r--r-- | src/utils/lombok/javac/TreeMirrorMaker.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/lombok/javac/TreeMirrorMaker.java b/src/utils/lombok/javac/TreeMirrorMaker.java index 8cd8cffe..3cb79412 100644 --- a/src/utils/lombok/javac/TreeMirrorMaker.java +++ b/src/utils/lombok/javac/TreeMirrorMaker.java @@ -91,8 +91,8 @@ public class TreeMirrorMaker extends TreeCopier<Void> { } // Monitor the following issues when making changes here. - // - https://github.com/rzwitserloot/lombok/issues/278 - // - https://github.com/rzwitserloot/lombok/issues/729 + // - https://github.com/projectlombok/lombok/issues/278 + // - https://github.com/projectlombok/lombok/issues/729 @Override public JCTree visitVariable(VariableTree node, Void p) { JCVariableDecl original = node instanceof JCVariableDecl ? (JCVariableDecl) node : null; JCVariableDecl copy = (JCVariableDecl) super.visitVariable(node, p); @@ -115,7 +115,7 @@ public class TreeMirrorMaker extends TreeCopier<Void> { return copy; } - // Fix for NPE in HandleVal. See https://github.com/rzwitserloot/lombok/issues/372 + // Fix for NPE in HandleVal. See https://github.com/projectlombok/lombok/issues/372 // This and visitVariable is rather hacky but we're working around evident bugs or at least inconsistencies in javac. @Override public JCTree visitLabeledStatement(LabeledStatementTree node, Void p) { return node.getStatement().accept(this, p); |