• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 LinkedBlockingDequeBoundedTest extends JSR166TestCase {
13  
emptyCollection()14      protected BlockingQueue emptyCollection() {
15          return new LinkedBlockingDeque(SIZE);
16      }
17  
18  }
19