mirror of https://github.com/apache/lucene.git
LUCENE-6909: remove unnecessary synchronized keyword
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1716476 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1daa11f328
commit
bc7215b5f4
lucene
|
@ -232,6 +232,10 @@ Optimizations
|
|||
be fully read from disk if the supplied StoredFieldVisitor doesn't want it.
|
||||
So put your largest text field value last to benefit. (David Smiley)
|
||||
|
||||
* LUCENE-6909: Remove unnecessary synchronized from
|
||||
FacetsConfig.getDimConfig for better concurrency (Sanne Grinovero
|
||||
via Mike McCandless)
|
||||
|
||||
Bug Fixes
|
||||
|
||||
* LUCENE-6817: ComplexPhraseQueryParser.ComplexPhraseQuery does not display
|
||||
|
|
|
@ -111,7 +111,7 @@ public class FacetsConfig {
|
|||
}
|
||||
|
||||
/** Get the current configuration for a dimension. */
|
||||
public synchronized DimConfig getDimConfig(String dimName) {
|
||||
public DimConfig getDimConfig(String dimName) {
|
||||
DimConfig ft = fieldTypes.get(dimName);
|
||||
if (ft == null) {
|
||||
ft = getDefaultDimConfig();
|
||||
|
|
Loading…
Reference in New Issue