mirror of https://github.com/apache/lucene.git
change lockdir to lockDir so that it follows the existing casing
pattern. git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150690 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
85849a7a12
commit
e791e88b67
|
@ -49,11 +49,11 @@ public class FSDirectory extends Directory {
|
|||
Boolean.getBoolean("disableLuceneLocks") || Constants.JAVA_1_1;
|
||||
|
||||
/**
|
||||
* Directory specified by <code>org.apache.lucene.lockdir</code>
|
||||
* Directory specified by <code>org.apache.lucene.lockDir</code>
|
||||
* or <code>java.io.tmpdir</code> system property
|
||||
*/
|
||||
public static final String LOCK_DIR =
|
||||
System.getProperty("org.apache.lucene.lockdir",
|
||||
System.getProperty("org.apache.lucene.lockDir",
|
||||
System.getProperty("java.io.tmpdir"));
|
||||
|
||||
/** The default class which implements filesystem-based directories. */
|
||||
|
|
Loading…
Reference in New Issue