Skip to content

Commit 01e75c8

Browse files
committed
fixes #11
1 parent c2b0bb0 commit 01e75c8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/ruby-debug-ide/xml_printer.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,6 @@ def print_variable(name, value, kind)
147147
unless value_str.is_a?(String)
148148
value_str = "ERROR: #{value.class}.to_s method returns #{value_str.class}. Should return String."
149149
end
150-
if value_str =~ /^\"(.*)"$/
151-
value_str = $1
152-
end
153150
end
154151
value_str = "[Binary Data]" if (value_str.respond_to?('is_binary_data?') && value_str.is_binary_data?)
155152
print("<variable name=\"%s\" kind=\"%s\" value=\"%s\" type=\"%s\" hasChildren=\"%s\" objectId=\"%#+x\"/>",

0 commit comments

Comments
 (0)