[JBoss-dev] [JBossCache] - prune in LRUAlgorithm

2005-01-21 Thread kkalmbach
Question about the prune method in LRUAlgorithm. This is probably a small issue that will not actually affect anyone, but I'm looking for an opinion. I hope this explanation makes sense Currently, the process method runs through the queue processing the gets/adds/deletes, then it runs

[JBoss-dev] [JBossCache] - prune in LRUAlgorithm

2005-01-03 Thread kkalmbach
Currently the prune method in the LRUAlgoritm is private. I want to be able to implement my own prune (probably by calling super.prune(), then add my own additional pruning). Is there any downside to making prune protected instead of private assuming I call super.prune(). The only other