HBASE-1215 migration; remove check for pre0.20 fs

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@796946 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-07-23 05:08:54 +00:00
parent 0063bafbc9
commit c25c8fe9ea
1 changed files with 0 additions and 3 deletions

View File

@ -66,9 +66,6 @@ public class HStoreFileToStoreFile {
private static void writeInputFiles(final HBaseConfiguration conf,
final FileSystem fs, final Path dir)
throws IOException {
if (!FSUtils.isPre020FileLayout(fs, FSUtils.getRootDir(conf))) {
throw new IOException("Not a pre-0.20 filesystem");
}
if (fs.exists(dir)) {
throw new IOException("Input exists -- please specify empty input dir");
}