Skip to content

Commit 56219f1

Browse files
committed
Move Nysiis into the main code base.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1298610 13f79535-47bb-0310-9956-ffa450edef68
1 parent 9869cfe commit 56219f1

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/changes/changes.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<!-- <release version="2.0" date="TBA" description="Feature and fix release."> <action dev="ggregory" type="fix" issue="CODEC-126"> Make
2626
org.apache.commons.codec.net.URLCodec charset field final. </action> </release>
2727
-->
28-
<release version="1.6.1" date="TBD" description="Feature and fix release.">
28+
<release version="1.7" date="TBD" description="Feature and fix release.">
2929
<action dev="ggregory" type="fix" issue="CODEC-132" due-to="rcmuir">
3030
BeiderMorseEncoder OOM issues
3131
</action>
@@ -35,6 +35,9 @@
3535
<action dev="ggregory" type="fix" issue="CODEC-121" due-to="javajohn">
3636
QuotedPrintableCodec does not support soft line break per the 'quoted-printable' example on Wikipedia
3737
</action>
38+
<action dev="ggregory" type="fix" issue="CODEC-63" due-to="javajohn">
39+
Implement NYSIIS
40+
</action>
3841
</release>
3942
<release version="1.6" date="20 November 2011" description="Feature and fix release.">
4043
<action dev="ggregory" type="fix" issue="CODEC-129" due-to="ggregory">

src/test/java/org/apache/commons/codec/language/Nysiis.java renamed to src/main/java/org/apache/commons/codec/language/Nysiis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public String encode(String pString) {
170170
}
171171

172172
public boolean isTrueLength() {
173-
return trueLength;
173+
return this.trueLength;
174174
}
175175

176176
/**

0 commit comments

Comments
 (0)