From 58bf67715f3178884ace671a1b23e6d0ca85f8f3 Mon Sep 17 00:00:00 2001 From: 2210045 <2210045@P9801Y.kjbank.dom> Date: Thu, 26 Feb 2026 11:08:04 +0900 Subject: [PATCH] =?UTF-8?q?errorcode=20=EC=84=A0=EC=96=B8=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/eactive/eai/agent/command/Command.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/eactive/eai/agent/command/Command.java b/src/com/eactive/eai/agent/command/Command.java index e9e0301..1c852a4 100644 --- a/src/com/eactive/eai/agent/command/Command.java +++ b/src/com/eactive/eai/agent/command/Command.java @@ -24,10 +24,10 @@ public abstract class Command implements Serializable { /** Command Arguments */ protected Object args; - private HashMap errorCode ; + private static final HashMap errorCode = new HashMap<>(); static { - errorCode = new HashMap(); + //HashMap errorCode = new HashMap(); errorCode.put("RECEAIMCM001", "Command 이름[{1}] 유효하지 않은 파라메터 타입 - {2}"); errorCode.put("RECEAIMCM002", "Command 이름[{1}] execute 메소드 실행중 에러가 발생 - {2}"); }