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:
Robert Davies 2006-04-07 21:59:20 +00:00
parent cc6fec68f4
commit 3c10ee0f52
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ import org.apache.commons.logging.LogFactory;
final class FreeSpaceManager{
private static final Log log = LogFactory.getLog(FreeSpaceManager.class);
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 prevMap=new HashMap();
private FreeSpaceTree tree=new FreeSpaceTree();

View File

@ -46,9 +46,9 @@ public class MapContainerImpl implements MapContainer{
protected final Object mutex=new Object();
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.store=rfs;
this.store=si;
this.root=root;
}