diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-10-31 16:05:33 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2015-11-16 22:18:29 +0100 |
commit | dc5e1b9b35e853e6b503efac367999e02569108e (patch) | |
tree | eed32aac8267d074338da92cd05261fe1e7cc31a /test | |
parent | 3f0a13501f19b966d3cbc0476a833783e6c6117a (diff) | |
download | lombok-dc5e1b9b35e853e6b503efac367999e02569108e.tar.gz lombok-dc5e1b9b35e853e6b503efac367999e02569108e.tar.bz2 lombok-dc5e1b9b35e853e6b503efac367999e02569108e.zip |
bugfix for comments near start of nodes (it would throw off alignment in pretty printer).
Diffstat (limited to 'test')
-rw-r--r-- | test/transform/resource/before/ValLambda.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/transform/resource/before/ValLambda.java b/test/transform/resource/before/ValLambda.java index ed843ed7..51c4fba1 100644 --- a/test/transform/resource/before/ValLambda.java +++ b/test/transform/resource/before/ValLambda.java @@ -14,7 +14,7 @@ class ValLambda { } // public void castLubLambda() { -// Runnable foo = (Runnable)((System.currentTimeMillis() > 0) ? ()-> {} : System.out::println); -// lombok.val foo = (Runnable)((System.currentTimeMillis() > 0) ? ()-> {} : System.out::println); +// Runnable foo = (Runnable) ((System.currentTimeMillis() > 0) ? () -> {} : System.out::println); +// lombok.val foo = (Runnable) ((System.currentTimeMillis() > 0) ? () -> {} : System.out::println); // } } |