Skip to content
Snippets Groups Projects
Verified Commit f676c3c3 authored by Jess's avatar Jess
Browse files

Issue #3443208 by smustgrave, andypost: Remove any missed deprecation code in...

Issue #3443208 by smustgrave, andypost: Remove any missed deprecation code in modules and lib folders
parent a003b4ec
No related branches found
No related tags found
No related merge requests found
......@@ -724,15 +724,6 @@
*/
# $settings['container_base_class'] = '\Drupal\Core\DependencyInjection\Container';
/**
* Override the default yaml parser class.
*
* Provide a fully qualified class name here if you would like to provide an
* alternate implementation YAML parser. The class must implement the
* \Drupal\Component\Serialization\SerializationInterface interface.
*/
# $settings['yaml_parser_class'] = NULL;
/**
* Trusted host configuration.
*
......
......@@ -38,14 +38,6 @@ final class Settings {
* @see self::handleDeprecations()
*/
private static $deprecatedSettings = [
'block_interest_cohort' => [
'replacement' => '',
'message' => 'The "block_interest_cohort" setting is deprecated in drupal:9.5.0. This setting should be removed from the settings file, since its usage has been removed. See https://www.drupal.org/node/3320787.',
],
'yaml_parser_class' => [
'replacement' => '',
'message' => 'The "yaml_parser_class" setting is deprecated in drupal:10.3.0. This setting should be removed from the settings file, since its usage has been removed. See https://www.drupal.org/node/3415489.',
],
'state_cache' => [
'replacement' => '',
'message' => 'The "state_cache" setting is deprecated in drupal:11.0.0. This setting should be removed from the settings file, since its usage has been removed. See https://www.drupal.org/node/3177901.',
......
......@@ -325,11 +325,6 @@ system.file:
path:
type: mapping
label: 'Path settings'
mapping:
temporary:
deprecated: "The 'system.file:path.temporary' config property path is deprecated in drupal:8.8.0 and is removed from drupal 11.0.0. Use settings.php instead. See https://www.drupal.org/node/3039255."
type: string
label: 'Temporary directory'
temporary_maximum_age:
type: integer
label: 'Maximum age for temporary files'
......
......@@ -309,8 +309,8 @@ public function testRealDeprecatedSettings(string $legacy_setting, string $expec
public static function providerTestRealDeprecatedSettings(): array {
return [
[
'block_interest_cohort',
'The "block_interest_cohort" setting is deprecated in drupal:9.5.0. This setting should be removed from the settings file, since its usage has been removed. See https://www.drupal.org/node/3320787.',
'state_cache',
'The "state_cache" setting is deprecated in drupal:11.0.0. This setting should be removed from the settings file, since its usage has been removed. See https://www.drupal.org/node/3177901.',
],
];
}
......
......@@ -724,15 +724,6 @@
*/
# $settings['container_base_class'] = '\Drupal\Core\DependencyInjection\Container';
/**
* Override the default yaml parser class.
*
* Provide a fully qualified class name here if you would like to provide an
* alternate implementation YAML parser. The class must implement the
* \Drupal\Component\Serialization\SerializationInterface interface.
*/
# $settings['yaml_parser_class'] = NULL;
/**
* Trusted host configuration.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment