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:
Bernhard Messer 2004-11-29 22:38:48 +00:00
parent 85849a7a12
commit e791e88b67
1 changed files with 2 additions and 2 deletions

View File

@ -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. */