updated to new package of main Server class

This commit is contained in:
hns 2001-08-27 16:50:20 +00:00
parent 232f1b37bd
commit c6d3edf6ae

View file

@ -184,7 +184,7 @@ public class CacheMap {
else { else {
if (newTable.size() >= eachCapacity) { if (newTable.size() >= eachCapacity) {
// Rotate the tables. // Rotate the tables.
helma.objectmodel.IServer.getLogger().log ("Rotating Cache tables at "+newTable.size()+"/"+oldTable.size()+" (new/old)"); helma.main.Server.getLogger().log ("Rotating Cache tables at "+newTable.size()+"/"+oldTable.size()+" (new/old)");
oldTable = newTable; oldTable = newTable;
newTable = new HashMap (eachCapacity, loadFactor); newTable = new HashMap (eachCapacity, loadFactor);
} }