Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 59276 invoked from network); 25 Feb 2003 07:51:55 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 25 Feb 2003 07:51:55 -0000 Received: (qmail 19681 invoked by uid 97); 25 Feb 2003 07:53:42 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 19674 invoked from network); 25 Feb 2003 07:53:41 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 25 Feb 2003 07:53:41 -0000 Received: (qmail 59069 invoked by uid 500); 25 Feb 2003 07:51:53 -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 59058 invoked by uid 500); 25 Feb 2003 07:51:53 -0000 Received: (qmail 59055 invoked from network); 25 Feb 2003 07:51:53 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 25 Feb 2003 07:51:53 -0000 Received: (qmail 74593 invoked by uid 1628); 25 Feb 2003 07:51:52 -0000 Date: 25 Feb 2003 07:51:52 -0000 Message-ID: <20030225075152.74592.qmail@icarus.apache.org> From: tobrien@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language TestDoubleMetaphone.java TestMetaphone.java TestNysiis.java TestRefinedSoundex.java TestSoundex.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 tobrien 2003/02/24 23:51:52 Modified: codec build.xml codec/src/java/org/apache/commons/codec BinaryDecoder.java BinaryEncoder.java Decoder.java DecoderException.java Encoder.java EncoderException.java StringEncoder.java StringEncoderComparator.java codec/src/java/org/apache/commons/codec/base64 Base64.java codec/src/java/org/apache/commons/codec/binary Base64.java Hex.java codec/src/java/org/apache/commons/codec/language DoubleMetaphone.java Metaphone.java Nysiis.java RefinedSoundex.java Soundex.java codec/src/test/org/apache/commons/codec TestAll.java TestBinaryEncoder.java TestStringEncoder.java codec/src/test/org/apache/commons/codec/binary TestBase64.java TestHex.java codec/src/test/org/apache/commons/codec/language TestDoubleMetaphone.java TestMetaphone.java TestNysiis.java TestRefinedSoundex.java TestSoundex.java Log: Updated copyright notices to 2003 Revision Changes Path 1.8 +2 -2 jakarta-commons-sandbox/codec/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/build.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- build.xml 4 Feb 2003 04:46:29 -0000 1.7 +++ build.xml 25 Feb 2003 07:51:50 -0000 1.8 @@ -111,7 +111,7 @@ version="true" doctitle="<h1>${component.title}</h1>" windowtitle="${component.title} (Version ${component.version})" - bottom="Copyright (c) 2001-2003 - Apache Software Foundation"> + bottom="Copyright (c) 2003 - Apache Software Foundation"> 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/BinaryDecoder.java Index: BinaryDecoder.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/BinaryDecoder.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- BinaryDecoder.java 24 Feb 2003 11:53:28 -0000 1.2 +++ BinaryDecoder.java 25 Feb 2003 07:51:50 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/BinaryEncoder.java Index: BinaryEncoder.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/BinaryEncoder.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- BinaryEncoder.java 24 Feb 2003 11:53:28 -0000 1.2 +++ BinaryEncoder.java 25 Feb 2003 07:51:50 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/Decoder.java Index: Decoder.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/Decoder.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Decoder.java 24 Feb 2003 11:53:28 -0000 1.2 +++ Decoder.java 25 Feb 2003 07:51:50 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/DecoderException.java Index: DecoderException.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/DecoderException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- DecoderException.java 24 Feb 2003 11:53:28 -0000 1.2 +++ DecoderException.java 25 Feb 2003 07:51:50 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.7 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/Encoder.java Index: Encoder.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/Encoder.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- Encoder.java 24 Feb 2003 11:53:28 -0000 1.6 +++ Encoder.java 25 Feb 2003 07:51:50 -0000 1.7 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/EncoderException.java Index: EncoderException.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/EncoderException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- EncoderException.java 24 Feb 2003 11:53:29 -0000 1.2 +++ EncoderException.java 25 Feb 2003 07:51:50 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/StringEncoder.java Index: StringEncoder.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/StringEncoder.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- StringEncoder.java 24 Feb 2003 11:53:29 -0000 1.2 +++ StringEncoder.java 25 Feb 2003 07:51:50 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.4 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/StringEncoderComparator.java Index: StringEncoderComparator.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/StringEncoderComparator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- StringEncoderComparator.java 25 Feb 2003 04:18:01 -0000 1.3 +++ StringEncoderComparator.java 25 Feb 2003 07:51:50 -0000 1.4 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +5 -5 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/base64/Base64.java Index: Base64.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/base64/Base64.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- Base64.java 8 Feb 2003 22:46:36 -0000 1.7 +++ Base64.java 25 Feb 2003 07:51:51 -0000 1.8 @@ -6,7 +6,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 1999-2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.6 +5 -6 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary/Base64.java Index: Base64.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary/Base64.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- Base64.java 25 Feb 2003 04:18:01 -0000 1.5 +++ Base64.java 25 Feb 2003 07:51:51 -0000 1.6 @@ -1,5 +1,3 @@ -package org.apache.commons.codec.binary; - /* * $Header$ * $Revision$ @@ -9,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 1999 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -62,6 +60,7 @@ * [Additional notices, if required by prior licensing conditions] * */ +package org.apache.commons.codec.binary; import java.util.Enumeration; import java.util.Vector; 1.2 +1 -1 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary/Hex.java Index: Hex.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/binary/Hex.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Hex.java 25 Feb 2003 04:16:14 -0000 1.1 +++ Hex.java 25 Feb 2003 07:51:51 -0000 1.2 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.6 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/DoubleMetaphone.java Index: DoubleMetaphone.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/DoubleMetaphone.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- DoubleMetaphone.java 16 Feb 2003 19:04:04 -0000 1.5 +++ DoubleMetaphone.java 25 Feb 2003 07:51:51 -0000 1.6 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2001-2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/Metaphone.java Index: Metaphone.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/Metaphone.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Metaphone.java 16 Feb 2003 19:04:04 -0000 1.2 +++ Metaphone.java 25 Feb 2003 07:51:51 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2001-2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/Nysiis.java Index: Nysiis.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/Nysiis.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Nysiis.java 16 Feb 2003 19:04:04 -0000 1.4 +++ Nysiis.java 25 Feb 2003 07:51:51 -0000 1.5 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2001-2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/RefinedSoundex.java Index: RefinedSoundex.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/RefinedSoundex.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- RefinedSoundex.java 16 Feb 2003 19:04:04 -0000 1.2 +++ RefinedSoundex.java 25 Feb 2003 07:51:51 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +2 -2 jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/Soundex.java Index: Soundex.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/java/org/apache/commons/codec/language/Soundex.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Soundex.java 16 Feb 2003 19:04:04 -0000 1.2 +++ Soundex.java 25 Feb 2003 07:51:51 -0000 1.3 @@ -1,7 +1,7 @@ /* ==================================================================== * The Apache Software License, Version 1.1 * - * Copyright (c) 2001-2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.8 +5 -5 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/TestAll.java Index: TestAll.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/TestAll.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- TestAll.java 8 Feb 2003 20:47:39 -0000 1.7 +++ TestAll.java 25 Feb 2003 07:51:51 -0000 1.8 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.2 +4 -4 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/TestBinaryEncoder.java Index: TestBinaryEncoder.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/TestBinaryEncoder.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- TestBinaryEncoder.java 16 Feb 2003 19:04:04 -0000 1.1 +++ TestBinaryEncoder.java 25 Feb 2003 07:51:51 -0000 1.2 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.2 +4 -4 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/TestStringEncoder.java Index: TestStringEncoder.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/TestStringEncoder.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- TestStringEncoder.java 16 Feb 2003 19:04:04 -0000 1.1 +++ TestStringEncoder.java 25 Feb 2003 07:51:51 -0000 1.2 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.5 +5 -5 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/binary/TestBase64.java Index: TestBase64.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/binary/TestBase64.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- TestBase64.java 25 Feb 2003 04:18:01 -0000 1.4 +++ TestBase64.java 25 Feb 2003 07:51:51 -0000 1.5 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2001-2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.2 +4 -4 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/binary/TestHex.java Index: TestHex.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/binary/TestHex.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- TestHex.java 25 Feb 2003 04:16:14 -0000 1.1 +++ TestHex.java 25 Feb 2003 07:51:51 -0000 1.2 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2001-2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +5 -5 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestDoubleMetaphone.java Index: TestDoubleMetaphone.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestDoubleMetaphone.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- TestDoubleMetaphone.java 16 Feb 2003 19:04:04 -0000 1.2 +++ TestDoubleMetaphone.java 25 Feb 2003 07:51:51 -0000 1.3 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +5 -5 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestMetaphone.java Index: TestMetaphone.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestMetaphone.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- TestMetaphone.java 16 Feb 2003 19:04:04 -0000 1.2 +++ TestMetaphone.java 25 Feb 2003 07:51:51 -0000 1.3 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +5 -5 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestNysiis.java Index: TestNysiis.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestNysiis.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- TestNysiis.java 16 Feb 2003 19:04:04 -0000 1.2 +++ TestNysiis.java 25 Feb 2003 07:51:51 -0000 1.3 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +5 -5 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestRefinedSoundex.java Index: TestRefinedSoundex.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestRefinedSoundex.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- TestRefinedSoundex.java 16 Feb 2003 19:04:04 -0000 1.2 +++ TestRefinedSoundex.java 25 Feb 2003 07:51:51 -0000 1.3 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without 1.3 +5 -5 jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestSoundex.java Index: TestSoundex.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/codec/src/test/org/apache/commons/codec/language/TestSoundex.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- TestSoundex.java 16 Feb 2003 19:04:04 -0000 1.2 +++ TestSoundex.java 25 Feb 2003 07:51:51 -0000 1.3 @@ -7,7 +7,7 @@ * * The Apache Software License, Version 1.1 * - * Copyright (c) 2002 The Apache Software Foundation. All rights + * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org