From a7bea14e202373143a268d3f69fe3429830b371b Mon Sep 17 00:00:00 2001 From: svethors Date: Wed, 1 Mar 2017 18:19:24 +0100 Subject: [PATCH] Removed unreferenced empty method SetDocumentId from ConceptSerializer --- Source/Bifrost.MongoDb/Concepts/ConceptSerializer.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Bifrost.MongoDb/Concepts/ConceptSerializer.cs b/Source/Bifrost.MongoDb/Concepts/ConceptSerializer.cs index dc193e7fe..6a4f02407 100644 --- a/Source/Bifrost.MongoDb/Concepts/ConceptSerializer.cs +++ b/Source/Bifrost.MongoDb/Concepts/ConceptSerializer.cs @@ -100,9 +100,5 @@ public void Serialize(BsonSerializationContext context, BsonSerializationArgs ar else if (underlyingValueType == typeof(decimal)) bsonWriter.WriteString(underlyingValue?.ToString() ?? default(decimal).ToString()); } - - public void SetDocumentId(object document, object id) - { - } } }