HBASE-22830 Removed deprecated method from StoreFile

Signed-off-by: stack <stack@apache.org>
This commit is contained in:
Jan Hentschel 2019-08-12 01:06:15 +02:00 committed by GitHub
parent 15c903b3f8
commit e9382154f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 19 deletions

View File

@ -296,11 +296,6 @@ public class HStoreFile implements StoreFile {
return this.sequenceid;
}
@Override
public long getModificationTimeStamp() throws IOException {
return getModificationTimestamp();
}
@Override
public long getModificationTimestamp() throws IOException {
return fileInfo.getModificationTime();

View File

@ -95,15 +95,6 @@ public interface StoreFile {
*/
long getMaxSequenceId();
/**
* Get the modification time of this store file. Usually will access the file system so throws
* IOException.
* @deprecated Since 2.0.0. Will be removed in 3.0.0.
* @see #getModificationTimestamp()
*/
@Deprecated
long getModificationTimeStamp() throws IOException;
/**
* Get the modification time of this store file. Usually will access the file system so throws
* IOException.

View File

@ -133,11 +133,6 @@ public class MockHStoreFile extends HStoreFile {
return compactedAway;
}
@Override
public long getModificationTimeStamp() {
return getModificationTimestamp();
}
@Override
public long getModificationTimestamp() {
return modificationTime;