From 3f0fec18726fb9c9f4dce614dbcfa650c1c04bf7 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 31 Jan 2020 15:58:19 +0100 Subject: [issue #788] Add more nullity annotations where relevant (chainable setters, static constructors, builder stuff) --- .../transform/resource/before/ValueStaticConstructorOf.java | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'test/transform/resource/before/ValueStaticConstructorOf.java') diff --git a/test/transform/resource/before/ValueStaticConstructorOf.java b/test/transform/resource/before/ValueStaticConstructorOf.java index ac857ffd..bd318d40 100644 --- a/test/transform/resource/before/ValueStaticConstructorOf.java +++ b/test/transform/resource/before/ValueStaticConstructorOf.java @@ -1,12 +1,11 @@ import lombok.Value; @Value(staticConstructor = "of") public class ValueStaticConstructorOf { + String name; + Double price; - String name; - Double price; - - private ValueStaticConstructorOf(String name, Double price) { - this.name = name; - this.price = price; - } + private ValueStaticConstructorOf(String name, Double price) { + this.name = name; + this.price = price; + } } -- cgit