Dasgupta, Ranjan wrote:
getText(java.lang.String,java.util.List<java.lang.String>) in older xwork changed to getText(java.lang.String,java.util.List<java.lang.Object>) in xwork-2.1.2
That was it (almost: it appears to be List, which is different than List<Object>). I don't use maven, and I was careful to make sure I only had one xwork jar in my path. Since you can't cast a List<String> to a List<Object> and casting it to List<? extends Object> also resulted in a failure to find the symbol, I wound up just casting them to List and adding @SuppressWarnings("unchecked"). Not an ideal solution, but it compiles now :-)
Thanks, -Dale --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org