Return-Path: Mailing-List: contact bsf-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list bsf-dev@jakarta.apache.org Received: (qmail 10175 invoked by uid 98); 27 Jan 2003 15:18:58 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Received: (qmail 9704 invoked from network); 27 Jan 2003 15:18:54 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 27 Jan 2003 15:18:54 -0000 Received: (qmail 22146 invoked by uid 500); 27 Jan 2003 15:17:28 -0000 Received: (qmail 22128 invoked from network); 27 Jan 2003 15:17:26 -0000 Received: from mail1.rz.uni-augsburg.de (137.250.121.10) by daedalus.apache.org with SMTP; 27 Jan 2003 15:17:26 -0000 Received: from pc91w0.wiso.uni-augsburg.de ([137.250.20.91]) by mail1.RZ.Uni-Augsburg.DE with esmtp (Exim 4.10) id 18dB0o-0004Fm-00 for bsf-dev@jakarta.apache.org; Mon, 27 Jan 2003 16:17:26 +0100 Received: from pc176w6.wiso.uni-augsburg.de ([137.250.26.176] helo=wu-wien.ac.at) by pc91w0.WiSo.Uni-Augsburg.DE with esmtp (Exim 4.12) id 18dB0m-00088S-00 for bsf-dev@jakarta.apache.org; Mon, 27 Jan 2003 16:17:24 +0100 Message-ID: <3E354D83.3020600@wu-wien.ac.at> Date: Mon, 27 Jan 2003 16:17:23 +0100 From: "Rony G. Flatscher" User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.0.2) Gecko/20021120 Netscape/7.01 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bean Scripting Framework developers Subject: Re: [Bsf-discussion] Solved: BSF-bug with "char" as argument References: <3E31ADE6.1050207@wu-wien.ac.at> <3E354C3A.80608@wstoddard.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *18dB0o-0004Fm-00*M10XW.KGh.o* X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Bill, > Thanks, we'll get this fix in. For future reference, unified diffs > are a bit easier for humans to read than context diffs (ie, diff -u or > cvs diff -u). Sorry for that (didn't realize it, it's a loong time that I worked with diffs or cvs for that matter), here's the new output: ----------------------------------- cut here ------------------------------------- E:\rony\dev\bsf\bsf-2_2\lib\com\ibm\bsf\util>diff -uw EngineUtils.java bkp\EngineUtils.java --- EngineUtils.java 2003-01-24 21:49:12.000000000 +0100 +++ bkp\EngineUtils.java 2001-01-30 17:46:18.000000000 +0100 @@ -137,8 +137,6 @@ else if(args[i] instanceof Double ) argTypes[i]= double.class; } else if (args[i] instanceof Boolean) { argTypes[i] = boolean.class; - } else if (args[i] instanceof Character) { - argTypes[i] = char.class; } } m = MethodUtils.getMethod (beanClass, methodName, argTypes, ----------------------------------- cut here ------------------------------------- Regards, ---rony