From db63f0a617a3afa9b368887cdbfe2c3cef42b397 Mon Sep 17 00:00:00 2001 From: cho Date: Mon, 9 Feb 2026 10:00:43 +0900 Subject: [PATCH] =?UTF-8?q?getter=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/eactive/eai/custom/pretty/PrettyPrintResponse.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/eactive/eai/custom/pretty/PrettyPrintResponse.java b/src/main/java/com/eactive/eai/custom/pretty/PrettyPrintResponse.java index 9032c78..aacf827 100644 --- a/src/main/java/com/eactive/eai/custom/pretty/PrettyPrintResponse.java +++ b/src/main/java/com/eactive/eai/custom/pretty/PrettyPrintResponse.java @@ -5,13 +5,10 @@ import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonSetter; import com.fasterxml.jackson.annotation.Nulls; -import lombok.Getter; -import lombok.Setter; -import lombok.ToString; +import lombok.Data; @SuppressWarnings("serial") -@ToString -@Setter +@Data public class PrettyPrintResponse implements Serializable { private String result; @JsonSetter(nulls = Nulls.SKIP)