From 91d11e2e791148712b59d26985577e7e558ae56c Mon Sep 17 00:00:00 2001 From: WebFreak001 Date: Mon, 5 Feb 2024 17:34:28 +0100 Subject: [PATCH] fix deprecation --- mongodb/vibe/db/mongo/connection.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongodb/vibe/db/mongo/connection.d b/mongodb/vibe/db/mongo/connection.d index 143b64711..5cc296966 100644 --- a/mongodb/vibe/db/mongo/connection.d +++ b/mongodb/vibe/db/mongo/connection.d @@ -959,7 +959,7 @@ final class MongoConnection { private int nextMessageId() { return m_msgid++; } - private void checkForError(string collection_name) + deprecated private void checkForError(string collection_name) { auto coll = collection_name.split(".")[0]; auto err = getLastError(coll);