Skip to content

Commit

Permalink
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions core/src/main/java/org/jruby/runtime/backtrace/TraceType.java
Original file line number Diff line number Diff line change
@@ -157,8 +157,6 @@ public static TraceType traceTypeFor(String style) {
if (style.equalsIgnoreCase("raw")) return new TraceType(Gather.RAW, Format.JRUBY);
else if (style.equalsIgnoreCase("ruby_framed")) return new TraceType(Gather.NORMAL, Format.JRUBY);
else if (style.equalsIgnoreCase("normal")) return new TraceType(Gather.NORMAL, Format.JRUBY);
// deprecated, just uses jruby format now
else if (style.equalsIgnoreCase("rubinius")) return new TraceType(Gather.NORMAL, Format.JRUBY);
else if (style.equalsIgnoreCase("full")) return new TraceType(Gather.FULL, Format.JRUBY);
else if (style.equalsIgnoreCase("mri")) return new TraceType(Gather.NORMAL, Format.MRI);
else return new TraceType(Gather.NORMAL, Format.JRUBY);
5 changes: 0 additions & 5 deletions lib/ruby/stdlib/jruby/vm.rb
Original file line number Diff line number Diff line change
@@ -189,9 +189,4 @@ def initialize()
CURRENT = MainVM.new
MAP ||= HashMap.new
MAP[VM_ID] = CURRENT
end

module Rubinius
VM = JRuby::VM
VM_ID = JRuby::VM_ID
end

0 comments on commit dd9e5e7

Please sign in to comment.