diff --git a/core/lib/Drupal/Component/Utility/SortArray.php b/core/lib/Drupal/Component/Utility/SortArray.php index 965d06e..a8d9f00 100644 --- a/core/lib/Drupal/Component/Utility/SortArray.php +++ b/core/lib/Drupal/Component/Utility/SortArray.php @@ -121,25 +121,6 @@ public static function sortByWeightAndTitleKey($a, $b, $weight_key = 'weight', $ } /** - * Sorts a structured array first by weight, then by label. - * - * @param array $a - * The first item to compare. - * @param array $b - * The second item to compare. - * @param string $weight_key - * (optional) The weight key to use. Defaults to 'weight'. - * @param string $title_key - * (optional) The title key to use. Defaults to 'label'. - * - * @return int - * The comparison result for uasort(). - */ - public static function sortByWeightAndLabelKey($a, $b, $weight_key = 'weight', $title_key = 'label') { - return self::sortByWeightAndTitleKey($a, $b, $weight_key, $title_key); - } - - /** * Sorts a string array item by an arbitrary key. * * @param array $a diff --git a/core/lib/Drupal/Core/Language/Language.php b/core/lib/Drupal/Core/Language/Language.php index 11e8733..4575983 100644 --- a/core/lib/Drupal/Core/Language/Language.php +++ b/core/lib/Drupal/Core/Language/Language.php @@ -216,7 +216,7 @@ public function setNegotiationMethodId($method_id) { * The array of language objects keyed by langcode. */ public static function sort(&$languages) { - uasort($languages, 'Drupal\Component\Utility\SortArray::sortByWeightAndLabelKey'); + uasort($languages, 'Drupal\Component\Utility\SortArray::sortByWeightAndTitleKey'); } }