File tree 1 file changed +4
-4
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/index
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ public class IndexDatabase {
165
165
private boolean isCountingDeltas ;
166
166
private boolean isWithDirectoryCounts ;
167
167
private List <String > directories ;
168
- private LockFactory lockfact ;
168
+ private LockFactory lockFactory ;
169
169
private final BytesRef emptyBR = new BytesRef ("" );
170
170
171
171
// Directory where we store indexes
@@ -195,7 +195,7 @@ public IndexDatabase() throws IOException {
195
195
public IndexDatabase (Project project , IndexDownArgsFactory factory ) throws IOException {
196
196
indexDownArgsFactory = factory ;
197
197
this .project = project ;
198
- lockfact = NoLockFactory .INSTANCE ;
198
+ lockFactory = NoLockFactory .INSTANCE ;
199
199
initialize ();
200
200
}
201
201
@@ -329,8 +329,8 @@ private void initialize() throws IOException {
329
329
}
330
330
}
331
331
332
- lockfact = pickLockFactory (env );
333
- indexDirectory = FSDirectory .open (indexDir .toPath (), lockfact );
332
+ lockFactory = pickLockFactory (env );
333
+ indexDirectory = FSDirectory .open (indexDir .toPath (), lockFactory );
334
334
pathAccepter = env .getPathAccepter ();
335
335
analyzerGuru = new AnalyzerGuru ();
336
336
xrefDir = new File (env .getDataRootFile (), XREF_DIR );
You can’t perform that action at this time.
0 commit comments