Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 85839 invoked from network); 1 Jun 2004 14:52:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 1 Jun 2004 14:52:02 -0000 Received: (qmail 41401 invoked by uid 500); 1 Jun 2004 14:52:06 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 41306 invoked by uid 500); 1 Jun 2004 14:52:05 -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 41293 invoked by uid 500); 1 Jun 2004 14:52:05 -0000 Received: (qmail 41288 invoked by uid 99); 1 Jun 2004 14:52:05 -0000 Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 01 Jun 2004 07:52:05 -0700 Received: (qmail 85795 invoked by uid 1818); 1 Jun 2004 14:51:55 -0000 Date: 1 Jun 2004 14:51:55 -0000 Message-ID: <20040601145155.85794.qmail@minotaur.apache.org> From: mbenson@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant Project.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N mbenson 2004/06/01 07:51:55 Modified: src/main/org/apache/tools/ant Project.java Log: Tiny refactoring. Revision Changes Path 1.168 +2 -2 ant/src/main/org/apache/tools/ant/Project.java Index: Project.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/Project.java,v retrieving revision 1.167 retrieving revision 1.168 diff -u -r1.167 -r1.168 --- Project.java 22 Apr 2004 14:48:31 -0000 1.167 +++ Project.java 1 Jun 2004 14:51:55 -0000 1.168 @@ -2020,7 +2020,7 @@ */ public Object get(Object key) { //System.out.println("AntRefTable.get " + key); - Object o = super.get(key); + Object o = getReal(key); if (o instanceof UnknownElement) { // Make sure that UnknownElement ue = (UnknownElement) o; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org