Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 74648 invoked from network); 7 Jun 2003 19:26:02 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 7 Jun 2003 19:26:02 -0000 Received: (qmail 18878 invoked by uid 97); 7 Jun 2003 19:28:21 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 18871 invoked from network); 7 Jun 2003 19:28:20 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 7 Jun 2003 19:28:20 -0000 Received: (qmail 74396 invoked by uid 500); 7 Jun 2003 19:26:00 -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 74385 invoked by uid 500); 7 Jun 2003 19:26:00 -0000 Received: (qmail 74382 invoked from network); 7 Jun 2003 19:26:00 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 7 Jun 2003 19:26:00 -0000 Received: (qmail 7865 invoked by uid 1581); 7 Jun 2003 19:25:59 -0000 Date: 7 Jun 2003 19:25:59 -0000 Message-ID: <20030607192559.7864.qmail@icarus.apache.org> From: dgraham@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/validator/src/share/org/apache/commons/validator Field.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N dgraham 2003/06/07 12:25:59 Modified: validator/src/share/org/apache/commons/validator Field.java Log: Somewhere along the way hArg0 was moved to private instead of protected, so move it back. Revision Changes Path 1.16 +5 -6 jakarta-commons/validator/src/share/org/apache/commons/validator/Field.java Index: Field.java =================================================================== RCS file: /home/cvs/jakarta-commons/validator/src/share/org/apache/commons/validator/Field.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- Field.java 29 May 2003 03:04:33 -0000 1.15 +++ Field.java 7 Jun 2003 19:25:58 -0000 1.16 @@ -149,7 +149,7 @@ /** * @deprecated This variable is no longer used, use args instead. */ - private FastHashMap hArg0 = new FastHashMap(); + protected FastHashMap hArg0 = new FastHashMap(); /** * @deprecated This variable is no longer used, use args instead. @@ -165,7 +165,6 @@ * @deprecated This variable is no longer used, use args instead. */ protected FastHashMap hArg3 = new FastHashMap(); - /** * Gets the page value that the Field is associated with for --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org