mirror of https://github.com/apache/lucene.git
SOLR-6365 NPE bug
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1622168 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9d05bbfad4
commit
fbb8dc76e3
|
@ -89,7 +89,7 @@ public class ParamSet {
|
|||
if(first == null) first = new NamedList();
|
||||
NamedList nl = first.clone();
|
||||
if(appends) {
|
||||
nl.addAll(second);
|
||||
if(second!=null) nl.addAll(second);
|
||||
} else {
|
||||
Set<String> a = new HashSet<>();
|
||||
Set<String> b = new HashSet<>();
|
||||
|
|
Loading…
Reference in New Issue