mirror of https://github.com/apache/activemq.git
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:
parent
8b9b09181b
commit
0ee6047d01
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue