diff --git a/redis_ssi.module b/redis_ssi.module
index 3e04d4b..220ed84 100644
--- a/redis_ssi.module
+++ b/redis_ssi.module
@@ -125,25 +125,6 @@ function redis_ssi_user_login($edit, $account) {
 }
 
 /**
- * Implements hook_user_update().
- */
-function redis_ssi_user_update(&$edit, $account, $category) {
-  // On the "user_save event" the password can get changed. In this case,
-  // Drupal core behaviour is to regenerate the session id, therefore we need
-  // to keep it consistent by replacing the one initially stored in Redis.
-  // Otherwise we might incur in permission issues accessing certain pages,
-  // e.g. the user/<uid>/edit right after the process of changing your password.
-  // @see user_save().
-  // @see drupal_session_regenerate().
-  // @see redis_ssi_user_login().
-
-  // If the password is being changed, update Redis.
-  if ($account->pass != $account->original->pass) {
-    redis_ssi_populate_user_js($account);
-  }
-}
-
-/**
  * Generate users javascript and store it in redis session cache.
  */
 function redis_ssi_populate_user_js($account) {
