From 18c226b95abbb1c86067bc62cd5c0260bf3af6d1 Mon Sep 17 00:00:00 2001 From: vlad Date: Mon, 30 Oct 2017 14:36:01 -0700 Subject: Rolling back some Refined code --- src/main/scala/xyz/driver/pdsuidomain/entities/PatientIssue.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/main/scala/xyz/driver/pdsuidomain/entities') diff --git a/src/main/scala/xyz/driver/pdsuidomain/entities/PatientIssue.scala b/src/main/scala/xyz/driver/pdsuidomain/entities/PatientIssue.scala index 7f17419..f616754 100644 --- a/src/main/scala/xyz/driver/pdsuidomain/entities/PatientIssue.scala +++ b/src/main/scala/xyz/driver/pdsuidomain/entities/PatientIssue.scala @@ -2,8 +2,6 @@ package xyz.driver.pdsuidomain.entities import java.time.LocalDateTime -import eu.timepit.refined.api.Refined -import eu.timepit.refined.collection.NonEmpty import xyz.driver.pdsuicommon.domain._ import xyz.driver.pdsuicommon.logging._ @@ -12,7 +10,7 @@ final case class PatientIssue(id: LongId[PatientIssue], patientId: UuidId[Patient], lastUpdate: LocalDateTime, isDraft: Boolean, - text: String Refined NonEmpty, + text: String, archiveRequired: Boolean) object PatientIssue { -- cgit v1.2.3