From 9fe676d2fa2a468c2df02a6f0bd5e884650a0b74 Mon Sep 17 00:00:00 2001 From: Felipe Zorzo Date: Thu, 4 Jan 2024 20:00:14 -0300 Subject: [PATCH] fix: Removed unnecessary call to default constructor in NdapiObject --- Ndapi/NdapiObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ndapi/NdapiObject.cs b/Ndapi/NdapiObject.cs index cdc32bd..7f0aa24 100644 --- a/Ndapi/NdapiObject.cs +++ b/Ndapi/NdapiObject.cs @@ -39,7 +39,7 @@ internal NdapiObject(string name, ObjectType type, NdapiObject parent = null) _type = type; } - internal NdapiObject(ObjectSafeHandle handle, ObjectType type) : this() + internal NdapiObject(ObjectSafeHandle handle, ObjectType type) { _handle = handle; _type = type;