summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2013-12-28 18:56:48 -0700
committerRocky Madden <git@rockymadden.com>2013-12-28 18:56:48 -0700
commit58670a6c0f4e7e5bcde45806683e6cc5b2eafcf2 (patch)
treee4f9077cce36bf901bb028577c6a1c34eb2b9006 /core
parent3db621c99d57195520a0a38d1790697b9cd8074b (diff)
downloadstringmetric-58670a6c0f4e7e5bcde45806683e6cc5b2eafcf2.tar.gz
stringmetric-58670a6c0f4e7e5bcde45806683e6cc5b2eafcf2.tar.bz2
stringmetric-58670a6c0f4e7e5bcde45806683e6cc5b2eafcf2.zip
A.
Diffstat (limited to 'core')
-rwxr-xr-xcore/source/main/scala/com/rockymadden/stringmetric/Algorithm.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/source/main/scala/com/rockymadden/stringmetric/Algorithm.scala b/core/source/main/scala/com/rockymadden/stringmetric/Algorithm.scala
index 00aed01..79821bd 100755
--- a/core/source/main/scala/com/rockymadden/stringmetric/Algorithm.scala
+++ b/core/source/main/scala/com/rockymadden/stringmetric/Algorithm.scala
@@ -18,14 +18,14 @@ object Algorithm {
final val RefinedSoundex = com.rockymadden.stringmetric.phonetic.RefinedSoundexAlgorithm
final val Soundex = com.rockymadden.stringmetric.phonetic.SoundexAlgorithm
- def computeWithMetaphone(charArray: Array[Char]) = Metaphone.compute(charArray)
+ def computeWithMetaphone(a: Array[Char]) = Metaphone.compute(a)
- def computeWithNysiis(charArray: Array[Char]) = Nysiis.compute(charArray)
+ def computeWithNysiis(a: Array[Char]) = Nysiis.compute(a)
- def computeWithRefinedNysiis(charArray: Array[Char]) = RefinedNysiis.compute(charArray)
+ def computeWithRefinedNysiis(a: Array[Char]) = RefinedNysiis.compute(a)
- def computeWithRefinedSoundex(charArray: Array[Char]) = RefinedSoundex.compute(charArray)
+ def computeWithRefinedSoundex(a: Array[Char]) = RefinedSoundex.compute(a)
- def computeWithSoundex(charArray: Array[Char]) = Soundex.compute(charArray)
+ def computeWithSoundex(a: Array[Char]) = Soundex.compute(a)
}
}