Skip to content

Commit

Permalink
Fixes #4286. Interrupt ignores exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
enebo committed Nov 30, 2016
1 parent 2661806 commit ddbc53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/RubyInterrupt.java
Expand Up @@ -72,7 +72,7 @@ public IRubyObject initialize(ThreadContext context, IRubyObject[] args, Block b
args = new IRubyObject[]{signo, runtime.newString("Interrupt")};
}

super.initialize(args, block);
super.initialize(context, args, block);
return this;
}
}

0 comments on commit ddbc53b

Please sign in to comment.