DeviceAttributes remove

This commit is contained in:
Igor Kulikov 2021-09-10 13:31:20 +03:00
parent 34eef0383a
commit ad6a52cffd

View File

@ -71,7 +71,7 @@ public class DeviceAttributes {
public void remove(AttributeKey key) {
Map<String, AttributeKvEntry> map = getMapByScope(key.getScope());
if (map != null) {
map.remove(key);
map.remove(key.getAttributeKey());
}
}