dataimport global session putVal blank
--------------------------------------
Key: SOLR-2542
URL: https://issues.apache.org/jira/browse/SOLR-2542
Project: Solr
Issue Type: Bug
Affects Versions: 3.1
Reporter: Linbin Chen
Fix For: 3.1.1, 3.2, 4.0
{code:title=ContextImpl.java}
private void putVal(String name, Object val, Map map) {
if(val == null) map.remove(name);
else entitySession.put(name, val);
}
{code}
change to
{code:title=ContextImpl.java}
private void putVal(String name, Object val, Map map) {
if(val == null) map.remove(name);
else map.put(name, val);
}
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]