File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
exist-core/src/main/java/org/exist/storage Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -167,8 +167,6 @@ public class NativeBroker implements DBBroker {
167
167
168
168
private final static DigestType BINARY_RESOURCE_DIGEST_TYPE = DigestType .BLAKE_256 ;
169
169
170
- private boolean caseSensitive = true ;
171
-
172
170
private Configuration config ;
173
171
174
172
private BrokerPool pool ;
@@ -224,7 +222,6 @@ public class NativeBroker implements DBBroker {
224
222
private IEmbeddedXMLStreamReader streamReader ;
225
223
226
224
private final LockManager lockManager ;
227
- private final Optional <JournalManager > logManager ;
228
225
229
226
/**
230
227
* Observer Design Pattern: List of ContentLoadingObserver objects
@@ -236,15 +233,10 @@ public class NativeBroker implements DBBroker {
236
233
// initialize database; read configuration, etc.
237
234
public NativeBroker (final BrokerPool pool , final Configuration config ) throws EXistException {
238
235
this .config = config ;
239
- final Boolean temp = (Boolean ) config .getProperty (NativeValueIndex .PROPERTY_INDEX_CASE_SENSITIVE );
240
- if (temp != null ) {
241
- caseSensitive = temp ;
242
- }
243
236
this .pool = pool ;
244
237
this .preserveOnCopy = config .getProperty (PRESERVE_ON_COPY_PROPERTY , PreserveType .NO_PRESERVE );
245
238
246
239
this .lockManager = pool .getLockManager ();
247
- this .logManager = pool .getJournalManager ();
248
240
LOG .debug ("Initializing broker {}" , hashCode ());
249
241
250
242
final String prependDB = (String ) config .getProperty ("db-connection.prepend-db" );
You can’t perform that action at this time.
0 commit comments