diff --git a/src/Flysystem/Adapter/S3Adapter.php b/src/Flysystem/Adapter/S3Adapter.php
index 7c39ab9..9c7ed60 100644
--- a/src/Flysystem/Adapter/S3Adapter.php
+++ b/src/Flysystem/Adapter/S3Adapter.php
@@ -16,20 +16,6 @@ class S3Adapter extends AwsS3Adapter {
   /**
    * {@inheritdoc}
    */
-  public function has($path) {
-    $location = $this->applyPathPrefix($path);
-
-    if ($this->s3Client->doesObjectExist($this->bucket, $location)) {
-      return TRUE;
-    }
-
-    // Check for directory existance.
-    return $this->s3Client->doesObjectExist($this->bucket, $location . '/');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function getMetadata($path) {
     $metadata = parent::getMetadata($path);
 
