Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/graphql/filterable_array.rb')
-rw-r--r--lib/gitlab/graphql/filterable_array.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/gitlab/graphql/filterable_array.rb b/lib/gitlab/graphql/filterable_array.rb
deleted file mode 100644
index 4909d291fd6..00000000000
--- a/lib/gitlab/graphql/filterable_array.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Graphql
- class FilterableArray < Array
- attr_reader :filter_callback
-
- def initialize(filter_callback, *args)
- super(args)
- @filter_callback = filter_callback
- end
- end
- end
-end