Author: ggregory
Date: Sun Aug  7 16:52:37 2011
New Revision: 1154723

URL: http://svn.apache.org/viewvc?rev=1154723&view=rev
Log:
[CODEC-125] Implement a Beider-Morse phonetic matching codec. Methods in public 
interfaces are implicitly public.

Modified:
    
commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/bm/Rule.java

Modified: 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/bm/Rule.java
URL: 
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/bm/Rule.java?rev=1154723&r1=1154722&r2=1154723&view=diff
==============================================================================
--- 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/bm/Rule.java
 (original)
+++ 
commons/proper/codec/trunk/src/java/org/apache/commons/codec/language/bm/Rule.java
 Sun Aug  7 16:52:37 2011
@@ -210,14 +210,14 @@ public class Rule {
      * A minimal wrapper around the functionality of Matcher that we use, to 
allow for alternate implementations.
      */
     public static interface RMatcher {
-        public boolean find();
+        boolean find();
     }
 
     /**
      * A minimal wrapper around the functionality of Pattern that we use, to 
allow for alternate implementations.
      */
     public static interface RPattern {
-        public RMatcher matcher(CharSequence input);
+        RMatcher matcher(CharSequence input);
     }
 
     public static final String ALL = "ALL";


Reply via email to