From c59048a48d60b15c1384c372ff6133941c1b2ee4 Mon Sep 17 00:00:00 2001
From: abarton <Adam.Edward.Barton@cern.ch>
Date: Thu, 31 Oct 2019 11:32:54 +0000
Subject: [PATCH] Remove unnecessary virtual

---
 Event/EventContainers/EventContainers/IdentifiableContainerMT.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Event/EventContainers/EventContainers/IdentifiableContainerMT.h b/Event/EventContainers/EventContainers/IdentifiableContainerMT.h
index ad26ea3c007..1fd416dd8eb 100644
--- a/Event/EventContainers/EventContainers/IdentifiableContainerMT.h
+++ b/Event/EventContainers/EventContainers/IdentifiableContainerMT.h
@@ -252,7 +252,7 @@ public:
     virtual StatusCode addOrDelete(std::unique_ptr<T>, IdentifierHash hashId) override final;
 
     ///identical to previous excepts allows counting of deletions
-    virtual StatusCode addOrDelete(std::unique_ptr<T>, IdentifierHash hashId, bool &deleted);
+    StatusCode addOrDelete(std::unique_ptr<T>, IdentifierHash hashId, bool &deleted);
 
     ///Like the other add methods but optimized for changing from the inprogress state
     StatusCode addLock(std::unique_ptr<T> ptr, IdentifierHash hashId);
-- 
GitLab