Merged revision(s) 1668195 from lucene/dev/branches/branch_5x:

SOLR-7278: oh my... sorry
........


git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1668197 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2015-03-21 05:19:43 +00:00
parent 29053fd238
commit 54ba78e4de
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public class ValueSourceAugmenter extends DocTransformer
}
protected void setValue(SolrDocument doc, Object val) {
if(doc!=null) {
if(val!=null) {
doc.setField( name, val );
}
}