summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-11-17 15:00:56 +0100
committerJames Lopez <james@jameslopez.es>2016-11-17 15:00:56 +0100
commite22b5cca02d2885b36e6636ba3e6dcf78ada6f8b (patch)
tree9b6d472556f740d1c0dcf89e6abe085801f77397 /lib/gitlab/cycle_analytics
parent37a35050191b41cb5150d14292887d2fe88dad37 (diff)
downloadgitlab-ce-e22b5cca02d2885b36e6636ba3e6dcf78ada6f8b.tar.gz
remove class no longer required
Diffstat (limited to 'lib/gitlab/cycle_analytics')
-rw-r--r--lib/gitlab/cycle_analytics/events_fetcher.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/gitlab/cycle_analytics/events_fetcher.rb b/lib/gitlab/cycle_analytics/events_fetcher.rb
deleted file mode 100644
index 813db46f058..00000000000
--- 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