diff --git a/source/dnetd/dconnection.d b/source/dnetd/dconnection.d index 12f8de5..47e0eac 100644 --- a/source/dnetd/dconnection.d +++ b/source/dnetd/dconnection.d @@ -989,8 +989,14 @@ public class DConnection : Thread */ public void deleteProperty(string propertyName) { - /* TODO: Implement me */ + /* Lock the properties store */ + propertiesLock.lock(); + + /* Remove the property */ properties.remove(propertyName); + + /* Unlock the properties store */ + propertiesLock.unlock(); } public ConnectionType getConnectionType()