Skip to content

Commit

Permalink
Need RubyThread constructor to be protected for DebugThread subclass.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.codehaus.org/jruby/branches/headius@3744 961051c9-f516-0410-bf72-c9f7e237a7b7
  • Loading branch information
headius committed May 26, 2007
1 parent 0ebe8b6 commit b8fc02a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jruby/RubyThread.java
Expand Up @@ -266,7 +266,7 @@ public void pollThreadEvents() {
}
}

private RubyThread(Ruby runtime, RubyClass type) {
protected RubyThread(Ruby runtime, RubyClass type) {
super(runtime, type);
this.threadService = runtime.getThreadService();
// set to default thread group
Expand Down

0 comments on commit b8fc02a

Please sign in to comment.