summaryrefslogtreecommitdiff
path: root/cli/source
diff options
context:
space:
mode:
Diffstat (limited to 'cli/source')
-rwxr-xr-xcli/source/core/scala/org/hashtree/stringmetric/cli/OptionMapUtility.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/source/core/scala/org/hashtree/stringmetric/cli/OptionMapUtility.scala b/cli/source/core/scala/org/hashtree/stringmetric/cli/OptionMapUtility.scala
index a3a0f16..cb13617 100755
--- a/cli/source/core/scala/org/hashtree/stringmetric/cli/OptionMapUtility.scala
+++ b/cli/source/core/scala/org/hashtree/stringmetric/cli/OptionMapUtility.scala
@@ -10,7 +10,7 @@ object OptionMapUtility {
}
def toOptionMap(arguments: List[String]): OptionMap = {
- next(new HashMap[Symbol, String](), arguments)
+ next(HashMap.empty[Symbol, String], arguments)
}
@tailrec