Return-Path: Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 93348 invoked by uid 500); 24 Jul 2003 14:20:33 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 93314 invoked by uid 500); 24 Jul 2003 14:20:33 -0000 Received: (qmail 93294 invoked from network); 24 Jul 2003 14:20:32 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 24 Jul 2003 14:20:32 -0000 Received: (qmail 97789 invoked by uid 1146); 24 Jul 2003 14:20:32 -0000 Date: 24 Jul 2003 14:20:32 -0000 Message-ID: <20030724142032.97788.qmail@icarus.apache.org> From: bodewig@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant IntrospectionHelper.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bodewig 2003/07/24 07:20:32 Modified: src/main/org/apache/tools/ant IntrospectionHelper.java Log: JDK 1.2 compatibility Revision Changes Path 1.64 +1 -1 ant/src/main/org/apache/tools/ant/IntrospectionHelper.java Index: IntrospectionHelper.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/IntrospectionHelper.java,v retrieving revision 1.63 retrieving revision 1.64 diff -u -r1.63 -r1.64 --- IntrospectionHelper.java 24 Jul 2003 13:54:04 -0000 1.63 +++ IntrospectionHelper.java 24 Jul 2003 14:20:31 -0000 1.64 @@ -895,7 +895,7 @@ throws InvocationTargetException, IllegalAccessException { m.invoke(parent, new Boolean[] { - Boolean.valueOf(Project.toBoolean(value))}); + new Boolean(Project.toBoolean(value))}); } }; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org