git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1654862 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Noble Paul 2015-01-26 18:39:43 +00:00
parent 8755ea2edd
commit d3f7b2035a
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ public class TestBulkSchemaConcurrent extends AbstractFullDistribZkTestBase {
boolean success = true;
for (List e : collectErrors) {
if(!e.isEmpty()){
if(e != null && !e.isEmpty()){
success = false;
log.error(e.toString());
}