From ad7ffda05c5c3a90527e994dc1167e66d4a32d9e Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 6 Aug 2009 04:50:22 +0000 Subject: [PATCH] minor change - increasing cache for messages in order to speed up login according to the tests here -> [ adempiere-Feature Requests-2832432 ] Lazy cache for country and message https://sourceforge.net/tracker/?func=detail&atid=879335&aid=2832432&group_id=176962 --- base/src/org/compiere/util/Msg.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/org/compiere/util/Msg.java b/base/src/org/compiere/util/Msg.java index 2ed3ae0ede..833e5d84d2 100644 --- a/base/src/org/compiere/util/Msg.java +++ b/base/src/org/compiere/util/Msg.java @@ -36,7 +36,7 @@ import org.compiere.Adempiere; public final class Msg { /** Initial size of HashMap */ - private static final int MAP_SIZE = 750; + private static final int MAP_SIZE = 1500; /** Separator between Msg and optional Tip */ private static final String SEPARATOR = Env.NL + Env.NL;