Make sure data source is set to null after closing it to avoid re-use

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@731513 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2009-01-05 10:12:18 +00:00
parent 4708509a30
commit cfff37dff1
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ public class DataConfig {
processor = null;
if (dataSrc != null)
dataSrc.close();
dataSrc = null;
}
}