diff --git a/redirect.module b/redirect.module
index dfbe029..5f1422e 100644
--- a/redirect.module
+++ b/redirect.module
@@ -203,28 +203,6 @@ function redirect_menu() {
 }
 
 /**
- * Implements hook_url_inbound_alter().
- */
-function redirect_url_inbound_alter(&$path, $original_path, $path_language) {
-  // Redirect to canonical URLs.
-  if ($path && variable_get('redirect_canonical', 1)) {
-    $alias = drupal_get_path_alias($path, $path_language);
-    if ($alias != $path && $alias != $original_path) {
-      //return redirect_redirect(array('redirect' => $alias, 'type' => 'global'));
-    }
-
-    // Redirect from default entity paths to the proper entity path.
-    if ($path_entity = redirect_load_entity_from_path($path)) {
-      if ($uri = entity_uri($path_entity['entity_type'], $path_entity['entity'])) {
-        if ($path != $uri['path']) {
-          //return redirect_redirect(array('redirect' => $uri['path'], 'redirect_options' => $uri['options'], 'type' => 'global'));
-        }
-      }
-    }
-  }
-}
-
-/**
  * Implements hook_entity_info_alter().
  */
 function redirect_entity_info_alter(&$info) {
