Skip to content

Commit

Permalink
fix: Removed unnecessary call to default constructor in NdapiObject
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebz committed Jan 4, 2024
1 parent e4c274b commit 9fe676d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ndapi/NdapiObject.cs
Expand Up @@ -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;
Expand Down

0 comments on commit 9fe676d

Please sign in to comment.