removed println in setRoot()

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@429609 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2006-08-08 08:03:12 +00:00
parent 8b9b09181b
commit 0ee6047d01
1 changed files with 4 additions and 5 deletions

View File

@ -24,10 +24,10 @@ import java.io.IOException;
* @version $Revision$
*/
class DiskIndexLinkedList implements IndexLinkedList{
private IndexManager indexManager;
private transient IndexItem root;
private transient IndexItem last;
private transient int size=0;
protected IndexManager indexManager;
protected transient IndexItem root;
protected transient IndexItem last;
protected transient int size=0;
/**
* Constructs an empty list.
@ -43,7 +43,6 @@ class DiskIndexLinkedList implements IndexLinkedList{
void setRoot(IndexItem e){
this.root=e;
System.err.println("SET ROOT = "+e);
}
/**