Skip to content

Commit c8f88fd

Browse files
committed
[API] Removes old unused code from utils.rb
1 parent df376b8 commit c8f88fd

File tree

1 file changed

+0
-57
lines changed
  • elasticsearch-api/lib/elasticsearch/api

1 file changed

+0
-57
lines changed

elasticsearch-api/lib/elasticsearch/api/utils.rb

-57
Original file line numberDiff line numberDiff line change
@@ -177,63 +177,6 @@ def rescue_from_not_found(&block)
177177
end
178178
end
179179

180-
def __report_unsupported_parameters(arguments, params=[])
181-
messages = []
182-
unsupported_params = params.select {|d| d.is_a?(Hash) ? arguments.include?(d.keys.first) : arguments.include?(d) }
183-
184-
unsupported_params.each do |param|
185-
name = case param
186-
when Symbol
187-
param
188-
when Hash
189-
param.keys.first
190-
else
191-
raise ArgumentError, "The param must be a Symbol or a Hash"
192-
end
193-
194-
explanation = if param.is_a?(Hash)
195-
". #{param.values.first[:explanation]}."
196-
else
197-
". This parameter is not supported in the version you're using: #{Elasticsearch::API::VERSION}, and will be removed in the next release."
198-
end
199-
200-
message = "[!] You are using unsupported parameter [:#{name}]"
201-
202-
if source = caller && caller.last
203-
message += " in `#{source}`"
204-
end
205-
206-
message += explanation
207-
208-
messages << message
209-
end
210-
211-
unless messages.empty?
212-
messages << "Suppress this warning by the `-WO` command line flag."
213-
214-
if STDERR.tty?
215-
Kernel.warn messages.map { |m| "\e[31;1m#{m}\e[0m" }.join("\n")
216-
else
217-
Kernel.warn messages.join("\n")
218-
end
219-
end
220-
end
221-
222-
def __report_unsupported_method(name)
223-
message = "[!] You are using unsupported method [#{name}]"
224-
if source = caller && caller.last
225-
message += " in `#{source}`"
226-
end
227-
228-
message += ". This method is not supported in the version you're using: #{Elasticsearch::API::VERSION}, and will be removed in the next release. Suppress this warning by the `-WO` command line flag."
229-
230-
if STDERR.tty?
231-
Kernel.warn "\e[31;1m#{message}\e[0m"
232-
else
233-
Kernel.warn message
234-
end
235-
end
236-
237180
extend self
238181
end
239182
end

0 commit comments

Comments
 (0)