From b480690a70a17c91b19b0c9dbe114e60c12de930 Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Thu, 29 Feb 2024 16:03:26 -0600 Subject: [PATCH] Updated RecordDocumentModel.collectionName to not be final --- core/src/main/scala/com/outr/arango/RecordDocumentModel.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/com/outr/arango/RecordDocumentModel.scala b/core/src/main/scala/com/outr/arango/RecordDocumentModel.scala index 9233ed8a..01f86297 100644 --- a/core/src/main/scala/com/outr/arango/RecordDocumentModel.scala +++ b/core/src/main/scala/com/outr/arango/RecordDocumentModel.scala @@ -4,7 +4,7 @@ import com.outr.arango.core.{ComputeOn, ComputedValue} import fabric.rw._ trait RecordDocumentModel[D <: RecordDocument[D]] extends DocumentModel[D] { - override final val collectionName: String = getClass.getSimpleName.replace("$", "") + override val collectionName: String = getClass.getSimpleName.replace("$", "") val created: Field[Long] = field("created") val modified: Field[Long] = field("modified")