diff --git a/core/modules/user/user.module b/core/modules/user/user.module
index 32c257166c021d1b277e20bbde8f5b4c57f44010..cbb1b2da3a18d15ff1230bb50ea990431617d5c9 100644
--- a/core/modules/user/user.module
+++ b/core/modules/user/user.module
@@ -693,23 +693,6 @@ function user_translated_menu_link_alter(MenuLink &$menu_link) {
   }
 }
 
-/**
- * Try to validate the user's login credentials locally.
- *
- * @param $name
- *   User name to authenticate.
- * @param $password
- *   A plain-text password, such as trimmed text from form values.
- * @return
- *   The user's uid on success, or FALSE on failure to authenticate.
- *
- * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
- *   Use \Drupal\user\UserAuth::authenticate() instead.
- */
-function user_authenticate($name, $password) {
-  return \Drupal::service('user.auth')->authenticate($name, $password);
-}
-
 /**
  * Finalizes the login process and logs in a user.
  *