mirror of https://github.com/apache/lucene.git
SOLR-3891: CacheValue in CachingDirectoryFactory cannot be used outside of solr.core package.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1390197 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5709c18bd5
commit
ea85a78ced
|
@ -371,6 +371,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-3878: Exception when using open-ended range query with CurrencyField (janhoy)
|
||||
|
||||
* SOLR-3891: CacheValue in CachingDirectoryFactory cannot be used outside of
|
||||
solr.core package. (phunt via Mark Miller)
|
||||
|
||||
Other Changes
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -42,9 +42,9 @@ import org.slf4j.LoggerFactory;
|
|||
*
|
||||
*/
|
||||
public abstract class CachingDirectoryFactory extends DirectoryFactory {
|
||||
class CacheValue {
|
||||
Directory directory;
|
||||
int refCnt = 1;
|
||||
protected class CacheValue {
|
||||
public Directory directory;
|
||||
public int refCnt = 1;
|
||||
public String path;
|
||||
public boolean doneWithDir = false;
|
||||
public String toString() {
|
||||
|
|
Loading…
Reference in New Issue