From bb0089cd97c83deee8d62d328bf77a6eff4a8c9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0est=C3=A1k=20V=C3=ADt?= Date: Wed, 28 Jun 2017 10:49:29 +0200 Subject: [PATCH] Added forgotten file --- app/com/ysoft/odc/OdcParser.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/app/com/ysoft/odc/OdcParser.scala b/app/com/ysoft/odc/OdcParser.scala index dc8618f..5b28062 100644 --- a/app/com/ysoft/odc/OdcParser.scala +++ b/app/com/ysoft/odc/OdcParser.scala @@ -30,6 +30,7 @@ final case class Analysis(scanInfo: SerializableXml, name: String, reportDate: D final case class Hashes(sha1: String, md5: String){ override def toString: String = s"Hashes(sha1=$sha1, md5=$md5)" + def hashTuples: Seq[(String, String)] = Seq("sha1" -> sha1, "md5" -> md5) def serialized = s"$sha1-$md5" }