2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-25 16:05:19 +00:00

SMUtils.pm: new version 1.28.2

git-svn-id: https://svn.fhem.de/fhem/trunk@29430 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2024-12-15 15:49:18 +00:00
parent c254991d1f
commit a5e8e320a6

View File

@ -26,6 +26,7 @@
######################################################################################################################### #########################################################################################################################
# Version History # Version History
# 1.28.2 15.12.2024 change delHashRefDeep
# 1.28.1 08.12.2024 fix delHashRefDeep # 1.28.1 08.12.2024 fix delHashRefDeep
# 1.28.0 07.12.2024 add function delHashRefDeep # 1.28.0 07.12.2024 add function delHashRefDeep
# 1.27.4 05.12.2024 expand evaljson for SolarForecast # 1.27.4 05.12.2024 expand evaljson for SolarForecast
@ -63,7 +64,7 @@ use FHEM::SynoModules::ErrCodes qw(:all); # Erro
use GPUtils qw( GP_Import GP_Export ); use GPUtils qw( GP_Import GP_Export );
use Carp qw(croak carp); use Carp qw(croak carp);
use version 0.77; our $VERSION = version->declare('1.28.1'); use version 0.77; our $VERSION = version->declare('1.28.2');
use Exporter ('import'); use Exporter ('import');
our @EXPORT_OK = qw( our @EXPORT_OK = qw(
@ -318,8 +319,6 @@ sub delHashRefDeep {
} }
} }
$href = undef; # Optional: Garbage Collection erzwingen
return; return;
} }