Skip to content

Commit

Permalink
Dependencies fix:
Browse files Browse the repository at this point in the history
- remove guava
- make optional: jctools
  • Loading branch information
dlepex committed Oct 22, 2017
1 parent ff22cf0 commit 201907a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/github/jcext/JcExt.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ private JcExt() {
// ignored
}
try {
qp = jcToolsPresent ? (JcExtQueueProvider) Class.forName("github.jcext.internal.JcToolsQueueProvider").newInstance() :
new JcExtQueueProvider();
qp = jcToolsPresent ?
(JcExtQueueProvider) Class.forName("github.jcext.internal.JcToolsQueueProvider").newInstance()
: new JcExtQueueProvider();
} catch (Exception ex) {
throw new RuntimeException(ex);
}
Expand Down

0 comments on commit 201907a

Please sign in to comment.