removed unused method.

This commit is contained in:
Faris Armoush
2025-04-14 14:35:24 +03:00
parent f19cc616be
commit 1493e35f6a

View File

@ -150,4 +150,15 @@ class _CeilingSensorDialogState extends State<CeilingSensorDialog> {
], ],
); );
} }
List<DeviceFunctionData> updateValuesForAddedFunctions(List<DeviceFunctionData> addedFunctions) {
return addedFunctions.map((function) {
if (function.functionCode == 'sensitivity') {
return function.copyWith(
value: function.value,
condition: function.condition,
);
}
return function;
}).toList();
}
} }