Coverage Report - org.webslinger.lang.AbstractConcurrentCache
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractConcurrentCache
50%
2/4
N/A
0
 
 1  
 package org.webslinger.lang;
 2  
 
 3  
 public abstract class AbstractConcurrentCache<K, V> extends AbstractCache<K, V> {
 4  
     protected AbstractConcurrentCache(Class<?> owner, String field, String label, boolean sorted) {
 5  0
         this(owner, field, label, null, sorted);
 6  0
     }
 7  
 
 8  
     protected AbstractConcurrentCache(Class<?> owner, String field, String label, ValueType type, boolean sorted) {
 9  2900
         super(owner, field, label, type, StorageType.CONCURRENT, sorted);
 10  2900
     }
 11  
 }