Skip to content

Commit 31d080c

Browse files
author
Dirk Verbeeck
committed
1 parent c4b7642 commit 31d080c

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

project.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ limitations under the License.
185185
<url>http://www.junit.org</url>
186186
</dependency>
187187
</dependencies>
188-
<issueTrackingUrl>http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Codec&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time</issueTrackingUrl>
188+
<issueTrackingUrl>http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Codec&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time</issueTrackingUrl>
189189
<build>
190190
<nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
191191
<sourceDirectory>src/java</sourceDirectory>

src/test/org/apache/commons/codec/language/SoundexTest.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/*
22
* Copyright 2001-2004 The Apache Software Foundation.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
15+
*/
1616

1717
// (FYI: Formatted and sorted with Eclipse)
1818
package org.apache.commons.codec.language;
@@ -26,8 +26,8 @@
2626

2727
/**
2828
* Tests {@link Soundex}
29-
*
30-
* @version $Id: SoundexTest.java,v 1.20 2004/10/08 22:56:22 ggregory Exp $
29+
*
30+
* @version $Id$
3131
* @author Apache Software Foundation
3232
*/
3333
public class SoundexTest extends StringEncoderAbstractTest {
@@ -47,7 +47,7 @@ void encodeAll(String[] strings, String expectedEncoding) {
4747
assertEquals(expectedEncoding, this.getEncoder().encode(strings[i]));
4848
}
4949
}
50-
50+
5151
/**
5252
* @return Returns the _encoder.
5353
*/
@@ -139,7 +139,7 @@ public void testDifference() throws EncoderException {
139139
// Examples from http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_setu-sus_3o6w.asp
140140
assertEquals(4, this.getEncoder().difference("Smith", "Smythe"));
141141
assertEquals(4, this.getEncoder().difference("Smithers", "Smythers"));
142-
assertEquals(2, this.getEncoder().difference("Anothers", "Brothers"));
142+
assertEquals(2, this.getEncoder().difference("Anothers", "Brothers"));
143143
}
144144

145145
public void testEncodeBasic() {
@@ -257,7 +257,7 @@ public void testHWRuleEx1() {
257257
/**
258258
* Consonants from the same code group separated by W or H are treated as
259259
* one.
260-
*
260+
*
261261
* Test data from http://www.myatt.demon.co.uk/sxalg.htm
262262
*/
263263
public void testHWRuleEx2() {
@@ -340,8 +340,8 @@ public void testMsSqlServer3() {
340340

341341
/**
342342
* Fancy characters are not mapped by the default US mapping.
343-
*
344-
* http://nagoya.apache.org/bugzilla/show_bug.cgi?id=29080
343+
*
344+
* http://issues.apache.org/bugzilla/show_bug.cgi?id=29080
345345
*/
346346
public void testUsMappingOWithDiaeresis() {
347347
assertEquals("O000", this.getEncoder().encode("o"));
@@ -355,8 +355,8 @@ public void testUsMappingOWithDiaeresis() {
355355

356356
/**
357357
* Fancy characters are not mapped by the default US mapping.
358-
*
359-
* http://nagoya.apache.org/bugzilla/show_bug.cgi?id=29080
358+
*
359+
* http://issues.apache.org/bugzilla/show_bug.cgi?id=29080
360360
*/
361361
public void testUsMappingEWithAcute() {
362362
assertEquals("E000", this.getEncoder().encode("e"));

0 commit comments

Comments
 (0)