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$
|
* @version $Revision$
|
||||||
*/
|
*/
|
||||||
class DiskIndexLinkedList implements IndexLinkedList{
|
class DiskIndexLinkedList implements IndexLinkedList{
|
||||||
private IndexManager indexManager;
|
protected IndexManager indexManager;
|
||||||
private transient IndexItem root;
|
protected transient IndexItem root;
|
||||||
private transient IndexItem last;
|
protected transient IndexItem last;
|
||||||
private transient int size=0;
|
protected transient int size=0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs an empty list.
|
* Constructs an empty list.
|
||||||
|
@ -43,7 +43,6 @@ class DiskIndexLinkedList implements IndexLinkedList{
|
||||||
|
|
||||||
void setRoot(IndexItem e){
|
void setRoot(IndexItem e){
|
||||||
this.root=e;
|
this.root=e;
|
||||||
System.err.println("SET ROOT = "+e);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue