mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
17.26.2015 88f16d892d54fd8c3e190cc1f6363638b11ae1a3
opendj-server-legacy/src/test/java/org/opends/server/extensions/DefaultEntryCacheTestCase.java
@@ -59,12 +59,12 @@
       extends CommonEntryCacheTestCase<EntryCacheCfg>
{
  // Entry cache implementations participating in this test.
  private SoftReferenceEntryCache softRefCache = null;
  private FIFOEntryCache fifoCache = null;
  private SoftReferenceEntryCache softRefCache;
  private FIFOEntryCache fifoCache;
  // ... and their configuration entries.
  Entry cacheSoftReferenceConfigEntry = null;
  Entry cacheFIFOConfigEntry = null;
  Entry cacheSoftReferenceConfigEntry;
  Entry cacheFIFOConfigEntry;
  // The entry cache order map sorted by the cache level.
  private SortedMap<Integer, EntryCache<? extends EntryCacheCfg>>
@@ -72,8 +72,8 @@
    EntryCache<? extends EntryCacheCfg>>();
  // Dummy test entries for each participating implementation.
  private ArrayList<Entry> testSoftRefEntriesList = null;
  private ArrayList<Entry> testFIFOEntriesList = null;
  private ArrayList<Entry> testSoftRefEntriesList;
  private ArrayList<Entry> testFIFOEntriesList;
  /**
   * Initialize the entry cache test.