mirror of https://github.com/apache/lucene.git
add IndexSearcher.toString()
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1091499 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
35d1d369f5
commit
b559afee35
|
@ -857,4 +857,9 @@ public class IndexSearcher {
|
||||||
this.leaves = leaves;
|
this.leaves = leaves;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "IndexSearcher(" + reader + ")";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue