Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed compilation error.
  • Loading branch information
nirvdrum committed Dec 31, 2014
1 parent d3e8328 commit 4710b5f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/src/main/java/org/jruby/Ruby.java
Expand Up @@ -1537,7 +1537,11 @@ private void initCore() {
}

// Fiber depends on thread library, so we load it here
new ThreadLibrary().load(this, false);
try {
new ThreadLibrary().load(this, false);
} catch (IOException e) {
throw new RuntimeException(e);
}

new ThreadFiberLibrary().load(this, false);

Expand Down

1 comment on commit 4710b5f

@nirvdrum
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@headius @enebo This is almost certainly the wrong fix, but I just wanted to get master building again. One of you should take a look at this when you get a moment.

Please sign in to comment.