Skip to content

Commit 166c9ed

Browse files
committed
Added @SInCE 1.3 to difference() methods.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130311 13f79535-47bb-0310-9956-ffa450edef68
1 parent 308b93c commit 166c9ed

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

src/java/org/apache/commons/codec/language/RefinedSoundex.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Margaret Odell and Robert Russell
2626
*
2727
* @author Apache Software Foundation
28-
* @version $Id: RefinedSoundex.java,v 1.16 2004/02/29 04:08:31 tobrien Exp $
28+
* @version $Id: RefinedSoundex.java,v 1.17 2004/03/17 18:30:59 ggregory Exp $
2929
*/
3030
public class RefinedSoundex implements StringEncoder {
3131

@@ -90,6 +90,7 @@ public RefinedSoundex(char[] mapping) {
9090
*
9191
* @throws EncoderException
9292
* if an error occurs encoding one of the strings
93+
* @since 1.3
9394
*/
9495
public int difference(String s1, String s2) throws EncoderException {
9596
return SoundexUtils.difference(this, s1, s2);

src/java/org/apache/commons/codec/language/Soundex.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* with similar phonemes.
2626
*
2727
* @author Apache Software Foundation
28-
* @version $Id: Soundex.java,v 1.20 2004/02/29 04:08:31 tobrien Exp $
28+
* @version $Id: Soundex.java,v 1.21 2004/03/17 18:30:59 ggregory Exp $
2929
*/
3030
public class Soundex implements StringEncoder {
3131

@@ -60,6 +60,7 @@ public class Soundex implements StringEncoder {
6060
*
6161
* @throws EncoderException
6262
* if an error occurs encoding one of the strings
63+
* @since 1.3
6364
*/
6465
public int difference(String s1, String s2) throws EncoderException {
6566
return SoundexUtils.difference(this, s1, s2);

src/java/org/apache/commons/codec/language/SoundexUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
* Utility methods for {@link Soundex} and {@link RefinedSoundex} classes.
2424
*
2525
* @author Apache Software Foundation
26-
* @version $Id: SoundexUtils.java,v 1.4 2004/02/29 04:08:31 tobrien Exp $
26+
* @version $Id: SoundexUtils.java,v 1.5 2004/03/17 18:31:35 ggregory Exp $
27+
* @since 1.3
2728
*/
2829
final class SoundexUtils {
2930

0 commit comments

Comments
 (0)