Markus Fischer created WW-4740:
----------------------------------

             Summary: NullPointer in 
com.opensymphony.xwork2.ActionSupport.getLocale
                 Key: WW-4740
                 URL: https://issues.apache.org/jira/browse/WW-4740
             Project: Struts 2
          Issue Type: Bug
          Components: Core
    Affects Versions: 2.5.10
            Reporter: Markus Fischer


After upgrading from 2.5.2 to 2.5.10 I get a NullPointerException when calling 
getText("myKey") in an utility class like this:

{code:title=Example|borderStyle=solid}
public class ListGenerator extends ActionSupport {

    public final List<String> getValues() {
        final List<String> result = new ArrayList<>();

        result.add(getText("select.header"));
        result.add(getText("register.female"));
        result.add(getText("register.male"));

        return result;
    }
}
{code}

java.lang.NullPointerException at 
com.opensymphony.xwork2.ActionSupport.getLocale(ActionSupport.java:64)

....

ERROR org.apache.struts2.dispatcher.DefaultDispatcherErrorHandler - Exception 
occurred during processing request: java.lang.NullPointerException



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to