We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca8e488 commit ec89829Copy full SHA for ec89829
lib/ruby-debug-ide/xml_printer.rb
@@ -1,5 +1,4 @@
1
require 'cgi'
2
-require 'yaml'
3
require 'monitor'
4
5
module Debugger
@@ -332,7 +331,6 @@ def print(*params)
332
331
end
333
334
def handle_binary_data(value)
335
- # noinspection RubyResolve
336
return '[Binary Data]' if (value.respond_to?('is_binary_data?') && value.is_binary_data?)
337
return '[Invalid encoding]' if (value.respond_to?('valid_encoding?') && !value.valid_encoding?)
338
value
0 commit comments