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

matthew_swift
26.21.2007 5ceb2e9601d2501d021d0c61188ec913076555a0
opends/src/server/org/opends/server/extensions/FileSystemEntryCache.java
@@ -1119,16 +1119,16 @@
    newMaxAllowedMemory = configuration.getMaxMemorySize();
    // Determine JE cache percent.
    newJECachePercent = configuration.getDatabaseCachePercent();
    newJECachePercent = configuration.getDBCachePercent();
    // Determine JE cache size.
    newJECacheSize = configuration.getDatabaseCacheSize();
    newJECacheSize = configuration.getDBCacheSize();
    // Check if this cache is persistent.
    newPersistentCache = configuration.isPersistentCache();
    // Check if this cache should use compact encoding.
    newCompactEncoding = configuration.isBackendCompactEncoding();
    newCompactEncoding = configuration.isCompactEncoding();
    // Get native JE properties.
    newJEProperties = configuration.getJEProperty();