mirror of https://github.com/apache/lucene.git
fix ContentItemsSource.printStatistics to print only if verbose
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1200756 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9eeece3338
commit
7b4eed2664
|
@ -149,6 +149,9 @@ public abstract class ContentItemsSource {
|
|||
}
|
||||
|
||||
public void printStatistics(String itemsName) {
|
||||
if (!verbose) {
|
||||
return;
|
||||
}
|
||||
boolean print = false;
|
||||
String col = " ";
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
|
Loading…
Reference in New Issue