summaryrefslogtreecommitdiff
path: root/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala')
-rwxr-xr-xcore/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala b/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala
index 84f136d..71796d7 100755
--- a/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala
+++ b/core/src/main/scala/com/rockymadden/stringmetric/Algorithm.scala
@@ -15,11 +15,11 @@ object Algorithm {
object StringAlgorithm {
- final val Metaphone = phonetic.MetaphoneAlgorithm
- final val Nysiis = phonetic.NysiisAlgorithm
- final val RefinedNysiis = phonetic.RefinedNysiisAlgorithm
- final val RefinedSoundex = phonetic.RefinedSoundexAlgorithm
- final val Soundex = phonetic.SoundexAlgorithm
+ val Metaphone = phonetic.MetaphoneAlgorithm
+ val Nysiis = phonetic.NysiisAlgorithm
+ val RefinedNysiis = phonetic.RefinedNysiisAlgorithm
+ val RefinedSoundex = phonetic.RefinedSoundexAlgorithm
+ val Soundex = phonetic.SoundexAlgorithm
def computeWithMetaphone(a: Array[Char]) = Metaphone.compute(a)