diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2016-07-19 13:49:11 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2016-07-19 13:50:43 +0200 |
commit | aa2f4424a78b962edf0b7e0ef551a82c5822619a (patch) | |
tree | 861248d878ae09778b98e4555cfce5c009db67fa /src | |
parent | fa2ff14e65bea5d3042ffc01c811b00fa6efbd58 (diff) | |
download | lombok-aa2f4424a78b962edf0b7e0ef551a82c5822619a.tar.gz lombok-aa2f4424a78b962edf0b7e0ef551a82c5822619a.tar.bz2 lombok-aa2f4424a78b962edf0b7e0ef551a82c5822619a.zip |
[trivial] typo in changelog and comment in PrettyPrinter.java
Diffstat (limited to 'src')
-rw-r--r-- | src/delombok/lombok/delombok/PrettyPrinter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delombok/lombok/delombok/PrettyPrinter.java b/src/delombok/lombok/delombok/PrettyPrinter.java index d1b47c0d..b5064a33 100644 --- a/src/delombok/lombok/delombok/PrettyPrinter.java +++ b/src/delombok/lombok/delombok/PrettyPrinter.java @@ -1075,7 +1075,7 @@ public class PrettyPrinter extends JCTree.Visitor { @Override public void visitForLoop(JCForLoop tree) { aPrint("for ("); if (tree.init.nonEmpty()) { - // ForInit is either a list of StatementExpressionList or a LocalVariableDeclaration + // ForInit is either a StatementExpressionList or a LocalVariableDeclaration if (tree.init.head instanceof JCVariableDecl) { boolean first = true; int dims = 0; |