Example #1
0
 private void addToCorrectThreadGroup(ThreadContext context) {
   // JRUBY-3568, inherit threadgroup or use default
   IRubyObject group = context.getThread().group();
   if (!group.isNil()) {
     ((RubyThreadGroup) group).addDirectly(this);
   } else {
     context.runtime.getDefaultThreadGroup().addDirectly(this);
   }
 }