Re: [HELP] Warning when using JSDK1.5 to compile

2005-06-15 Thread Pham Anh Tuan
Larry, thank you very much :) - Original Message - From: "Larry Meadors" <[EMAIL PROTECTED]> To: Sent: Wednesday, June 15, 2005 7:15 PM Subject: Re: [HELP] Warning when using JSDK1.5 to compile Sun changed the API of the Method class from public Object invoke(Ob

Re: [HELP] Warning when using JSDK1.5 to compile

2005-06-15 Thread Larry Meadors
Sun changed the API of the Method class from public Object invoke(Object obj, Object[] args) ...to... public Object invoke(Object obj, Object... args) In either case, the behavior is the same. It is just a warning, not an error, so things should work fine. Larry On 6/15/05, Pham Anh Tuan <[

[HELP] Warning when using JSDK1.5 to compile

2005-06-15 Thread Pham Anh Tuan
I got warning when I use JDK1.5 to compile BeanAction in ibatis\struts\BeanAction.java error: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call [javac] cast to java.lang.Object[] for a non-varargs call and to