Return-Path: Delivered-To: apmail-xml-xalan-cvs-archive@www.apache.org Received: (qmail 64752 invoked from network); 15 Oct 2003 18:16:30 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 15 Oct 2003 18:16:30 -0000 Received: (qmail 17411 invoked by uid 500); 15 Oct 2003 18:16:21 -0000 Delivered-To: apmail-xml-xalan-cvs-archive@xml.apache.org Received: (qmail 17396 invoked by uid 500); 15 Oct 2003 18:16:21 -0000 Mailing-List: contact xalan-cvs-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: Delivered-To: mailing list xalan-cvs@xml.apache.org Received: (qmail 17383 invoked from network); 15 Oct 2003 18:16:21 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 15 Oct 2003 18:16:21 -0000 Received: (qmail 64742 invoked by uid 1551); 15 Oct 2003 18:16:29 -0000 Date: 15 Oct 2003 18:16:29 -0000 Message-ID: <20031015181629.64741.qmail@minotaur.apache.org> From: mkwan@apache.org To: xml-xalan-cvs@apache.org Subject: cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/compiler Sort.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N mkwan 2003/10/15 11:16:29 Modified: java/src/org/apache/xalan/xsltc/compiler Sort.java Log: Apply the patch for bugzilla 23271 from Bruno Fernandez-Ruiz (brunofr@olympum.com). Revision Changes Path 1.20 +4 -4 xml-xalan/java/src/org/apache/xalan/xsltc/compiler/Sort.java Index: Sort.java =================================================================== RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/compiler/Sort.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- Sort.java 30 Jan 2003 18:46:02 -0000 1.19 +++ Sort.java 15 Oct 2003 18:16:29 -0000 1.20 @@ -428,7 +428,7 @@ sort._closureVars.size(); for (int i = 0; i < length; i++) { - final VariableRef varRef = (VariableRef) sort._closureVars.get(i); + final VariableRefBase varRef = (VariableRefBase) sort._closureVars.get(i); // Discard duplicate variable references if (dups.contains(varRef)) continue; @@ -503,7 +503,7 @@ // Initialize closure in record class final int ndups = dups.size(); for (int i = 0; i < ndups; i++) { - final VariableRef varRef = (VariableRef) dups.get(i); + final VariableRefBase varRef = (VariableRefBase) dups.get(i); final VariableBase var = varRef.getVariable(); final Type varType = var.getType(); @@ -567,7 +567,7 @@ final int length = (sort._closureVars == null) ? 0 : sort._closureVars.size(); for (int i = 0; i < length; i++) { - final VariableRef varRef = (VariableRef) sort._closureVars.get(i); + final VariableRefBase varRef = (VariableRefBase) sort._closureVars.get(i); // Discard duplicate variable references if (dups.contains(varRef)) continue; --------------------------------------------------------------------- To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org For additional commands, e-mail: xalan-cvs-help@xml.apache.org