diff --git a/core/lib/Drupal/Core/Cache/ApcuBackend.php b/core/lib/Drupal/Core/Cache/ApcuBackend.php
index e086488545c3a12a70664db284024737ab055cef..ffaeba30849536766168b9be46cd3ec2985b67f7 100644
--- a/core/lib/Drupal/Core/Cache/ApcuBackend.php
+++ b/core/lib/Drupal/Core/Cache/ApcuBackend.php
@@ -243,8 +243,7 @@ public function deleteAll() {
    * {@inheritdoc}
    */
   public function garbageCollection() {
-    // Any call to apc_fetch() causes APC to expunge expired items.
-    apc_fetch('');
+    // APC performs garbage collection automatically.
   }
 
   /**