Fixed error with missing getter for Derive4J (#6391)
This commit is contained in:
parent
9a7e0ed790
commit
326bfbe712
|
@ -6,7 +6,7 @@ import org.derive4j.Make;
|
||||||
|
|
||||||
@Data(value = @Derive(
|
@Data(value = @Derive(
|
||||||
inClass = "{ClassName}Impl",
|
inClass = "{ClassName}Impl",
|
||||||
make = {Make.lazyConstructor, Make.constructors}
|
make = {Make.lazyConstructor, Make.constructors, Make.getters}
|
||||||
))
|
))
|
||||||
public interface LazyRequest {
|
public interface LazyRequest {
|
||||||
interface Cases<R>{
|
interface Cases<R>{
|
||||||
|
|
Loading…
Reference in New Issue