samples/reentrant/test/org/apidesign/reentrant/CriticalSectionReentrantTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
permissions -rw-r--r--
Using HTTPS to download the libraries
     1 package org.apidesign.reentrant;
     2 
     3 public class CriticalSectionReentrantTest extends CriticalSectionBase {
     4     @Override
     5     protected CriticalSection<Integer> create() {
     6         return new CriticalSectionReentrant<Integer>();
     7     }
     8 }