Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 47470 invoked from network); 7 Feb 2005 07:54:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 7 Feb 2005 07:54:08 -0000 Received: (qmail 25235 invoked by uid 500); 7 Feb 2005 07:54:06 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 24891 invoked by uid 500); 7 Feb 2005 07:54:05 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 24876 invoked by uid 500); 7 Feb 2005 07:54:05 -0000 Received: (qmail 24873 invoked by uid 99); 7 Feb 2005 07:54:04 -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; Sun, 06 Feb 2005 23:54:04 -0800 Received: (qmail 47409 invoked by uid 65534); 7 Feb 2005 07:54:03 -0000 Message-ID: <20050207075403.47402.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Mon, 07 Feb 2005 07:54:03 -0000 Subject: svn commit: r151706 - jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/commons/digester2/Context.java To: commons-cvs@jakarta.apache.org From: skitching@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: skitching Date: Sun Feb 6 23:54:02 2005 New Revision: 151706 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D151706 Log: Move constructor to after member declarations Update copyright to 2005 Add svm:keywords property Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/= commons/digester2/Context.java (contents, props changed) Modified: jakarta/commons/proper/digester/branches/digester2/src/java/org/a= pache/commons/digester2/Context.java URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/digester/branches= /digester2/src/java/org/apache/commons/digester2/Context.java?view=3Ddiff&r= 1=3D151705&r2=3D151706 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/= commons/digester2/Context.java (original) +++ jakarta/commons/proper/digester/branches/digester2/src/java/org/apache/= commons/digester2/Context.java Sun Feb 6 23:54:02 2005 @@ -1,6 +1,6 @@ -/* $Id: $ +/* $Id$ * - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -39,16 +39,6 @@ =20 public class Context { =20 - // --------------------------------------------------------- Construct= ors - - /** - * Construct a new Context. - */ - public Context(SAXHandler saxHandler, Log log) { - this.saxHandler =3D saxHandler; - this.log =3D log; - } - // ---------------------------------------------------=20 // Instance Variables // ---------------------------------------------------=20 @@ -109,6 +99,18 @@ * CallParamAction. */ private ArrayStack params =3D new ArrayStack(); + + // ---------------------------------------------------------=20 + // Constructors + // ---------------------------------------------------------=20 + + /** + * Construct a new Context. + */ + public Context(SAXHandler saxHandler, Log log) { + this.saxHandler =3D saxHandler; + this.log =3D log; + } =20 // --------------------------------------------------- // Properties Propchange: jakarta/commons/proper/digester/branches/digester2/src/java/org= /apache/commons/digester2/Context.java ---------------------------------------------------------------------------= --- svn:keywords =3D Id --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org