deprecation removal

This commit is contained in:
Yuri Kuznetsov
2024-11-09 15:03:02 +02:00
parent 806d0982b3
commit 1f774f50eb
2 changed files with 0 additions and 12 deletions
@@ -94,12 +94,6 @@ class EnumType
$value = $entity->get($field);
// For bc.
// @todo Remove in v9.0.
if ($value === '') {
$value = null;
}
return in_array($value, $optionList);
}
@@ -276,12 +276,6 @@ class LinkMultipleType
$optionList
);
// For bc.
// @todo Remove in v9.0.
if ($value === '') {
$value = null;
}
return in_array($value, $optionList);
}
}