We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8317dc1 commit dbe80e7Copy full SHA for dbe80e7
src/java/org/apache/commons/codec/language/bm/Rule.java
@@ -210,14 +210,14 @@ public List<Phoneme> getPhonemes() {
210
* A minimal wrapper around the functionality of Matcher that we use, to allow for alternate implementations.
211
*/
212
public static interface RMatcher {
213
- public boolean find();
+ boolean find();
214
}
215
216
/**
217
* A minimal wrapper around the functionality of Pattern that we use, to allow for alternate implementations.
218
219
public static interface RPattern {
220
- public RMatcher matcher(CharSequence input);
+ RMatcher matcher(CharSequence input);
221
222
223
public static final String ALL = "ALL";
0 commit comments