BAEL2567-New section on Lombok’s @Getter(lazy=true)

This commit is contained in:
Chirag Dewan 2019-02-01 22:52:52 +05:30
parent f80f7b79a9
commit 328d58d3d0
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
package com.baeldung.singleton;
import lombok.Getter;
public class GetterLazy {
@Getter(lazy = true)
private final String name = "name";
}