diff --git a/core/modules/aggregator/src/FeedStorage.php b/core/modules/aggregator/src/FeedStorage.php
index 9017974..ad9bfa3 100644
--- a/core/modules/aggregator/src/FeedStorage.php
+++ b/core/modules/aggregator/src/FeedStorage.php
@@ -20,24 +20,6 @@ class FeedStorage extends SqlContentEntityStorage implements FeedStorageInterfac
   /**
    * {@inheritdoc}
    */
-  public function getFeedDuplicates(FeedInterface $feed) {
-    $query = \Drupal::entityQuery('aggregator_feed');
-
-    $or_condition = $query->orConditionGroup()
-      ->condition('title', $feed->label())
-      ->condition('url', $feed->getUrl());
-    $query->condition($or_condition);
-
-    if ($feed->id()) {
-      $query->condition('fid', $feed->id(), '<>');
-    }
-
-    return $this->loadMultiple($query->execute());
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function getFeedIdsToRefresh() {
     return $this->database->query('SELECT fid FROM {aggregator_feed} WHERE queued = 0 AND checked + refresh < :time AND refresh <> :never', array(
       ':time' => REQUEST_TIME,
diff --git a/core/modules/aggregator/src/FeedStorageInterface.php b/core/modules/aggregator/src/FeedStorageInterface.php
index 87875b9..dfca69c 100644
--- a/core/modules/aggregator/src/FeedStorageInterface.php
+++ b/core/modules/aggregator/src/FeedStorageInterface.php
@@ -26,12 +26,4 @@
    */
   public function getFeedDuplicates(FeedInterface $feed);
 
-  /**
-   * Returns the fids of feeds that need to be refreshed.
-   *
-   *  @return array
-   *    A list of feed ids to be refreshed.
-   */
-  public function getFeedIdsToRefresh();
-
 }
