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:
Simon Willnauer 2014-07-09 20:07:56 +00:00
parent 9b20625f49
commit 6386b22019
1 changed files with 0 additions and 24 deletions

View File

@ -84,30 +84,6 @@ public class NRTCachingDirectory extends FilterDirectory {
maxCachedBytes = (long) (maxCachedMB*1024*1024); 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 @Override
public String toString() { public String toString() {