mirror of https://github.com/apache/lucene.git
LUCENE-5810: remove obsolet methods
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1609281 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9b20625f49
commit
6386b22019
|
@ -84,30 +84,6 @@ public class NRTCachingDirectory extends FilterDirectory {
|
|||
maxCachedBytes = (long) (maxCachedMB*1024*1024);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LockFactory getLockFactory() {
|
||||
return in.getLockFactory();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLockFactory(LockFactory lf) throws IOException {
|
||||
in.setLockFactory(lf);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getLockID() {
|
||||
return in.getLockID();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Lock makeLock(String name) {
|
||||
return in.makeLock(name);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void clearLock(String name) throws IOException {
|
||||
in.clearLock(name);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
|
|
Loading…
Reference in New Issue