mirror of https://github.com/apache/activemq.git
updated comments
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@392433 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc6fec68f4
commit
3c10ee0f52
|
@ -28,7 +28,7 @@ import org.apache.commons.logging.LogFactory;
|
||||||
final class FreeSpaceManager{
|
final class FreeSpaceManager{
|
||||||
private static final Log log = LogFactory.getLog(FreeSpaceManager.class);
|
private static final Log log = LogFactory.getLog(FreeSpaceManager.class);
|
||||||
static final int ROOT_SIZE=64;
|
static final int ROOT_SIZE=64;
|
||||||
static final int RESIZE_INCREMENT=4096*1024;
|
static final int RESIZE_INCREMENT=20*1024*1024;
|
||||||
private Map map=new HashMap();
|
private Map map=new HashMap();
|
||||||
private Map prevMap=new HashMap();
|
private Map prevMap=new HashMap();
|
||||||
private FreeSpaceTree tree=new FreeSpaceTree();
|
private FreeSpaceTree tree=new FreeSpaceTree();
|
||||||
|
|
|
@ -46,9 +46,9 @@ public class MapContainerImpl implements MapContainer{
|
||||||
protected final Object mutex=new Object();
|
protected final Object mutex=new Object();
|
||||||
protected boolean closed=false;
|
protected boolean closed=false;
|
||||||
|
|
||||||
protected MapContainerImpl(Object id,StoreImpl rfs,LocatableItem root) throws IOException{
|
protected MapContainerImpl(Object id,StoreImpl si,LocatableItem root) throws IOException{
|
||||||
this.id=id;
|
this.id=id;
|
||||||
this.store=rfs;
|
this.store=si;
|
||||||
this.root=root;
|
this.root=root;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue