Home | History | Annotate | Download | only in jsr166
      1 /*
      2  * Written by Doug Lea with assistance from members of JCP JSR-166
      3  * Expert Group and released to the public domain, as explained at
      4  * http://creativecommons.org/publicdomain/zero/1.0/
      5  */
      6 
      7 package jsr166;
      8 
      9 import java.util.concurrent.BlockingQueue;
     10 import java.util.concurrent.LinkedBlockingDeque;
     11 
     12 public class LinkedBlockingDequeUnboundedTest extends BlockingQueueTest {
     13 
     14     protected BlockingQueue emptyCollection() {
     15         return new LinkedBlockingDeque();
     16     }
     17 
     18 }
     19