From 14c2161a3b58ec2e6cdc3286a04c743db596d378 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 8 Jan 2015 06:09:59 +0000 Subject: [PATCH] There is no need to use the `final` modifier inside a `final` class. Everything in it is `final` by default. See #30799. git-svn-id: https://develop.svn.wordpress.org/trunk@31085 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php index 0684e33cb7..c9dc52d447 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/wp-includes/class-wp-customize-manager.php @@ -894,7 +894,7 @@ final class WP_Customize_Manager { * @param {WP_Customize_Panel|WP_Customize_Section|WP_Customize_Control} $b Object B. * @return int */ - protected final function _cmp_priority( $a, $b ) { + protected function _cmp_priority( $a, $b ) { if ( $a->priority === $b->priority ) { return $a->instance_number - $a->instance_number; } else {