make ctors public - this broke the sandbox DbLock code

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150320 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2004-05-09 13:50:03 +00:00
parent 66601f515c
commit f5648fc28f
1 changed files with 2 additions and 2 deletions

View File

@ -38,11 +38,11 @@ public abstract class Lock {
public static long LOCK_POLL_INTERVAL = 1000;
private File lockFile = null;
Lock(File lockFile) {
public Lock(File lockFile) {
this.lockFile = lockFile;
}
Lock() {
public Lock() {
}
/** Attempts to obtain exclusive access and immediately return