Could you add a new annotation from get and set combinations. We dont use @data annotation with jpa/hibernate entities, becouse the hashcode generation can affect hibernate.
So, using @setter @getter annotations separately creates two lines of code pollution.
Thanks.
@Getter
@Setter
public @interface GetSet { }
You can put them on one line.
yes we can write in a single line is an ingenious idea but the ide's standard formats automatically convert it to double lines :)
Most helpful comment
You can put them on one line.