// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.builtin.hytalegenerator.positionproviders.cached;

import java.util.HashMap;
import java.util.LinkedList;
import com.hypixel.hytale.math.vector.Vector3d;
import java.util.Map;

public class CacheThreadMemory
{
    Map<Long, Vector3d[]> sections;
    LinkedList<Long> expirationList;
    int size;
    
    public CacheThreadMemory(final int size) {
        if (size < 0) {
            throw new IllegalArgumentException();
        }
        this.sections = new HashMap<Long, Vector3d[]>(size);
        this.expirationList = new LinkedList<Long>();
        this.size = size;
    }
}
