diff --git a/lib/gitlab/cycle_analytics/events_fetcher.rb b/lib/gitlab/cycle_analytics/events_fetcher.rb
deleted file mode 100644
index 813db46f058c9e1d1116fe82f2c4ea8e3ad01054..0000000000000000000000000000000000000000
--- a/lib/gitlab/cycle_analytics/events_fetcher.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module Gitlab
-  module CycleAnalytics
-    class EventsFetcher
-      def initialize(project:, options:)
-        @query = EventsQuery.new(project: project, options: options)
-      end
-
-      def fetch(stage:)
-        @query.execute(stage)
-      end
-    end
-  end
-end