From 328d58d3d070f15f7aa65de4ed529f3b618501f7 Mon Sep 17 00:00:00 2001 From: Chirag Dewan Date: Fri, 1 Feb 2019 22:52:52 +0530 Subject: [PATCH] =?UTF-8?q?BAEL2567-New=20section=20on=20Lombok=E2=80=99s?= =?UTF-8?q?=20@Getter(lazy=3Dtrue)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/baeldung/singleton/GetterLazy.java | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 lombok-custom/src/main/java/com/baeldung/singleton/GetterLazy.java diff --git a/lombok-custom/src/main/java/com/baeldung/singleton/GetterLazy.java b/lombok-custom/src/main/java/com/baeldung/singleton/GetterLazy.java deleted file mode 100644 index 8d690ebde7..0000000000 --- a/lombok-custom/src/main/java/com/baeldung/singleton/GetterLazy.java +++ /dev/null @@ -1,10 +0,0 @@ -package com.baeldung.singleton; - -import lombok.Getter; - - -public class GetterLazy { - - @Getter(lazy = true) - private final String name = "name"; -}