diff options
author | Roel Spilker <r.spilker@gmail.com> | 2020-05-07 23:26:51 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2020-05-07 23:27:17 +0200 |
commit | ca5bd2868af828ec6b26c91b2398e8c6dbf1c24e (patch) | |
tree | bd605bf38ab2cd97f6290370159e74887aaf2666 /src | |
parent | 20cce2049de56d5a71c6dcc376d6f4088d4552bc (diff) | |
download | lombok-ca5bd2868af828ec6b26c91b2398e8c6dbf1c24e.tar.gz lombok-ca5bd2868af828ec6b26c91b2398e8c6dbf1c24e.tar.bz2 lombok-ca5bd2868af828ec6b26c91b2398e8c6dbf1c24e.zip |
Delombok prints the ReceiverParameter (this), fixes #2444.
Diffstat (limited to 'src')
-rw-r--r-- | src/delombok/lombok/delombok/PrettyPrinter.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/delombok/lombok/delombok/PrettyPrinter.java b/src/delombok/lombok/delombok/PrettyPrinter.java index 2db70f7f..7eb8410b 100644 --- a/src/delombok/lombok/delombok/PrettyPrinter.java +++ b/src/delombok/lombok/delombok/PrettyPrinter.java @@ -796,8 +796,15 @@ public class PrettyPrinter extends JCTree.Visitor { print(tree.name); } - print("("); boolean first = true; + print("("); + + JCVariableDecl recvparam = readObject(tree, "recvparam", null); + if (recvparam != null) { + printVarDefInline(recvparam); + first = false; + } + for (JCVariableDecl param : tree.params) { if (!first) print(", "); first = false; |