HBASE-13256 HBaseConfiguration#checkDefaultsVersion(Configuration) has spelling error (Josh Elser)

This commit is contained in:
tedyu 2015-03-17 07:24:01 -07:00
parent 7b7b0bf9dd
commit 75b627c8ec
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public class HBaseConfiguration extends Configuration {
String thisVersion = VersionInfo.getVersion();
if (!thisVersion.equals(defaultsVersion)) {
throw new RuntimeException(
"hbase-default.xml file seems to be for and old version of HBase (" +
"hbase-default.xml file seems to be for an older version of HBase (" +
defaultsVersion + "), this version is " + thisVersion);
}
}