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

This commit is contained in:
tedyu 2015-03-17 07:24:38 -07:00
parent 489698d6c0
commit e1f972170d
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class HBaseConfiguration extends Configuration {
String thisVersion = VersionInfo.getVersion(); String thisVersion = VersionInfo.getVersion();
if (!thisVersion.equals(defaultsVersion)) { if (!thisVersion.equals(defaultsVersion)) {
throw new RuntimeException( 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); defaultsVersion + "), this version is " + thisVersion);
} }
} }