summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2012-11-09 13:20:13 -0700
committerRocky Madden <git@rockymadden.com>2012-11-09 13:20:13 -0700
commit7b9741921c3858aacfbfe625b237118b1d029873 (patch)
treea6eb8ddcdaf635f6126547c48aade91ccf840336 /core
parent32476de74b4e311c7a0944bbb962f99750e0269f (diff)
downloadstringmetric-7b9741921c3858aacfbfe625b237118b1d029873.tar.gz
stringmetric-7b9741921c3858aacfbfe625b237118b1d029873.tar.bz2
stringmetric-7b9741921c3858aacfbfe625b237118b1d029873.zip
Removed unused imports.
Diffstat (limited to 'core')
-rwxr-xr-xcore/source/core/scala/org/hashtree/stringmetric/similarity/DiceSorensenMetric.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/source/core/scala/org/hashtree/stringmetric/similarity/DiceSorensenMetric.scala b/core/source/core/scala/org/hashtree/stringmetric/similarity/DiceSorensenMetric.scala
index 08e0419..cc13fa3 100755
--- a/core/source/core/scala/org/hashtree/stringmetric/similarity/DiceSorensenMetric.scala
+++ b/core/source/core/scala/org/hashtree/stringmetric/similarity/DiceSorensenMetric.scala
@@ -1,7 +1,6 @@
package org.hashtree.stringmetric.similarity
-import org.hashtree.stringmetric.{ CompareTuple, FilterableStringMetric, MatchTuple, StringFilter, StringMetric, StringFilterDelegate }
-import scala.annotation.tailrec
+import org.hashtree.stringmetric.{ FilterableStringMetric, MatchTuple, StringFilter, StringMetric, StringFilterDelegate }
/** An implementation of the Dice, and Sorensen, [[org.hashtree.stringmetric.StringMetric]]. */
object DiceSorensenMetric extends StringMetric with FilterableStringMetric {