From 818e9075ce12eb03546c652496b9b8e37830804c Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Tue, 6 Jul 2021 18:13:38 +0000 Subject: [PATCH] Themes: Remove inline comment that is not relevant in WordPress Core. This removes an inline comment block that was added when importing the `WP_Theme_JSON` class in [50959]. The comment is relevant to the code only when viewed within the context of the Gutenberg plugin. Props nosolosw, jorbin. Fixes #53576. git-svn-id: https://develop.svn.wordpress.org/trunk@51352 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-theme-json.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/wp-includes/class-wp-theme-json.php b/src/wp-includes/class-wp-theme-json.php index 64ce47b035..486156fcd3 100644 --- a/src/wp-includes/class-wp-theme-json.php +++ b/src/wp-includes/class-wp-theme-json.php @@ -1206,12 +1206,6 @@ class WP_Theme_JSON { $theme_settings['settings']['typography']['fontSizes'] = $font_sizes; } - /* - * This allows to make the plugin work with WordPress 5.8 beta - * as well as lower versions. The second check can be removed - * as soon as the minimum WordPress version for the plugin - * is bumped to 5.8. - */ if ( isset( $settings['enableCustomSpacing'] ) ) { if ( ! isset( $theme_settings['settings']['spacing'] ) ) { $theme_settings['settings']['spacing'] = array();