Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 60018 invoked from network); 3 Feb 2005 11:06:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 3 Feb 2005 11:06:55 -0000 Received: (qmail 82385 invoked by uid 500); 3 Feb 2005 11:06:53 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 82332 invoked by uid 500); 3 Feb 2005 11:06:53 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 82319 invoked by uid 99); 3 Feb 2005 11:06:53 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 03 Feb 2005 03:06:52 -0800 Received: (qmail 59959 invoked by uid 1203); 3 Feb 2005 11:06:51 -0000 Date: 3 Feb 2005 11:06:51 -0000 Message-ID: <20050203110651.59958.qmail@minotaur.apache.org> From: dims@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/java/src/org/apache/axis/wsdl/toJava Utils.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dims 2005/02/03 03:06:51 Modified: java/src/org/apache/axis/wsdl/toJava Utils.java Log: Tighten the condition when the builtin ByteArrayHolder is used. Revision Changes Path 1.90 +1 -1 ws-axis/java/src/org/apache/axis/wsdl/toJava/Utils.java Index: Utils.java =================================================================== RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/wsdl/toJava/Utils.java,v retrieving revision 1.89 retrieving revision 1.90 diff -u -r1.89 -r1.90 --- Utils.java 1 Nov 2004 15:08:34 -0000 1.89 +++ Utils.java 3 Feb 2005 11:06:51 -0000 1.90 @@ -121,7 +121,7 @@ } // byte[] has a reserved holders - if (typeValue.equals("byte[]")) { + if (typeValue.equals("byte[]") && type.isBaseType()) { return "javax.xml.rpc.holders.ByteArrayHolder"; }