squid:S2293 - The diamond operator should be used

This commit is contained in:
Mohammed Ezzat
2016-01-29 07:33:34 +02:00
parent 1a55f3a420
commit 409ff027b8
13 changed files with 17 additions and 17 deletions

View File

@ -11,7 +11,7 @@ public class ItemQueue {
public ItemQueue() {
queue = new LinkedBlockingQueue<Item>(5);
queue = new LinkedBlockingQueue<>(5);
}
public void put(Item item) throws InterruptedException {