diff --git a/includes/date_api_argument_handler.inc b/includes/date_api_argument_handler.inc
index 00d5e39..4353cdd 100644
--- a/includes/date_api_argument_handler.inc
+++ b/includes/date_api_argument_handler.inc
@@ -293,8 +293,6 @@ class date_api_argument_handler extends views_handler_argument_date {
         unset($this->view->args[$this->position]); 
       }
     }
-    // Setting the offset to avoid trying to use timezone adjustments for dates that don't need it.
-    $this->offset = in_array($this->date_handler->granularity, array('hour', 'minute', 'sec')) ? NULL : 0;
   }
 
   /**
diff --git a/includes/date_api_filter_handler.inc b/includes/date_api_filter_handler.inc
index 7233fe3..7163c1d 100644
--- a/includes/date_api_filter_handler.inc
+++ b/includes/date_api_filter_handler.inc
@@ -425,11 +425,6 @@ class date_api_filter_handler extends views_handler_filter_numeric {
     }
   }
 
-  function pre_query() {
-    // Setting the offset to avoid trying to use timezone adjustments for dates that don't need it.
-    $this->offset = in_array($this->date_handler->granularity, array('hour', 'minute', 'sec')) ? NULL : 0;
-  }
-
   /**
    * Custom implementation of query() so we can get the
    * AND and OR methods in the right places.
