Skip to content

Commit

Permalink
log string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dlepex committed Nov 4, 2017
1 parent 7dc9455 commit 775b6b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
public class JcExtQueueProvider {

public <T> Queue<T> newPreallocatedQueue(int cap) {
return new ArrayBlockingQueue<T>(cap);
return new ArrayBlockingQueue<>(cap);
}
}

0 comments on commit 775b6b7

Please sign in to comment.