Skip to content

Commit dbe80e7

Browse files
committed
[CODEC-125] Implement a Beider-Morse phonetic matching codec. Methods in public interfaces are implicitly public.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1154723 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8317dc1 commit dbe80e7

File tree

1 file changed

+2
-2
lines changed
  • src/java/org/apache/commons/codec/language/bm

1 file changed

+2
-2
lines changed

src/java/org/apache/commons/codec/language/bm/Rule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,14 +210,14 @@ public List<Phoneme> getPhonemes() {
210210
* A minimal wrapper around the functionality of Matcher that we use, to allow for alternate implementations.
211211
*/
212212
public static interface RMatcher {
213-
public boolean find();
213+
boolean find();
214214
}
215215

216216
/**
217217
* A minimal wrapper around the functionality of Pattern that we use, to allow for alternate implementations.
218218
*/
219219
public static interface RPattern {
220-
public RMatcher matcher(CharSequence input);
220+
RMatcher matcher(CharSequence input);
221221
}
222222

223223
public static final String ALL = "ALL";

0 commit comments

Comments
 (0)