[gatein-commits] gatein SVN: r5099 - exo/portal/branches/3.1.x/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Nov 16 02:04:38 EST 2010


Author: kien_nguyen
Date: 2010-11-16 02:04:38 -0500 (Tue, 16 Nov 2010)
New Revision: 5099

Modified:
   exo/portal/branches/3.1.x/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/WebuiBindingContext.java
Log:
EXOGTN-140 [PLF] Check null to catch exception of WebuiBindingContext.appRe

Modified: exo/portal/branches/3.1.x/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/WebuiBindingContext.java
===================================================================
--- exo/portal/branches/3.1.x/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/WebuiBindingContext.java	2010-11-16 06:54:20 UTC (rev 5098)
+++ exo/portal/branches/3.1.x/webui/core/src/main/java/org/exoplatform/webui/core/lifecycle/WebuiBindingContext.java	2010-11-16 07:04:38 UTC (rev 5099)
@@ -89,7 +89,7 @@
 
    public String appRes(String mesgKey) throws Exception
    {
-      String value;
+      String value = "";
       try
       {
          ResourceBundle res = rcontext_.getApplicationResourceBundle();
@@ -99,7 +99,8 @@
       {
          if (PropertyManager.isDevelopping())
             log.warn("Can not find resource bundle for key : " + mesgKey);
-         value = mesgKey.substring(mesgKey.lastIndexOf('.') + 1);
+         if(mesgKey != null)
+        	 value = mesgKey.substring(mesgKey.lastIndexOf('.') + 1);
       }
       return value;
    }



More information about the gatein-commits mailing list