From 72f546f9cb424932024e91b2c4431aea51909c42 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 14 Feb 2020 01:21:17 +0100 Subject: [trivial] improving consistency between javac vs. ecj output wasn't worth an issue on the tracker: javac and ecj handlers for static constructors would differ; ecjs would specify the return type and constructor invocation using fully qualified types, whereas the handler for javac did not. --- test/transform/resource/before/ConstructorInner.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test/transform/resource/before/ConstructorInner.java (limited to 'test/transform/resource/before') diff --git a/test/transform/resource/before/ConstructorInner.java b/test/transform/resource/before/ConstructorInner.java new file mode 100644 index 00000000..dd74d43a --- /dev/null +++ b/test/transform/resource/before/ConstructorInner.java @@ -0,0 +1,5 @@ +class ConstructorInner { + @lombok.AllArgsConstructor(staticName = "of") + static class Inner { + } +} \ No newline at end of file -- cgit