From depot-cvs-return-667-apmail-incubator-depot-cvs-archive=incubator.apache.org@incubator.apache.org Tue Aug 17 06:51:27 2004 Return-Path: Delivered-To: apmail-incubator-depot-cvs-archive@www.apache.org Received: (qmail 90763 invoked from network); 17 Aug 2004 06:51:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 17 Aug 2004 06:51:27 -0000 Received: (qmail 26103 invoked by uid 500); 17 Aug 2004 06:51:27 -0000 Delivered-To: apmail-incubator-depot-cvs-archive@incubator.apache.org Received: (qmail 26082 invoked by uid 500); 17 Aug 2004 06:51:27 -0000 Mailing-List: contact depot-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: depot-dev@incubator.apache.org Delivered-To: mailing list depot-cvs@incubator.apache.org Received: (qmail 26068 invoked by uid 99); 17 Aug 2004 06:51:26 -0000 X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Mon, 16 Aug 2004 23:51:26 -0700 Received: (qmail 90733 invoked by uid 65534); 17 Aug 2004 06:51:22 -0000 Date: 17 Aug 2004 06:51:22 -0000 Message-ID: <20040817065122.90731.qmail@minotaur.apache.org> From: nickchalko@apache.org To: depot-cvs@incubator.apache.org Subject: svn commit: rev 36503 - incubator/depot/trunk/version/src/java/org/apache/depot/version/ant/stamp X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: nickchalko Date: Mon Aug 16 23:51:22 2004 New Revision: 36503 Modified: incubator/depot/trunk/version/src/java/org/apache/depot/version/ant/stamp/VersionGeneratorTask.java Log: Removed unused field. Modified: incubator/depot/trunk/version/src/java/org/apache/depot/version/ant/stamp/VersionGeneratorTask.java ============================================================================== --- incubator/depot/trunk/version/src/java/org/apache/depot/version/ant/stamp/VersionGeneratorTask.java (original) +++ incubator/depot/trunk/version/src/java/org/apache/depot/version/ant/stamp/VersionGeneratorTask.java Mon Aug 16 23:51:22 2004 @@ -33,11 +33,6 @@ */ public class VersionGeneratorTask extends DirectoryVersionMarkerTask { - - private boolean m_debug = false; - - - public VersionGeneratorTask() { super(); } @@ -93,14 +88,4 @@ return fw; } - - /** - * Set the generated file's debug field.. - * - * @param newDebug - * boolean - */ - public void setDebug(boolean newDebug) { - m_debug = newDebug; - } }