HBASE-8956 A couple of small misspellings thoughout the codebase.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1503502 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a39393addd
commit
83f51a4d6a
|
@ -899,7 +899,7 @@ public class RpcClient {
|
|||
e = (IOException)t;
|
||||
markClosed(e);
|
||||
} else {
|
||||
e = new IOException("Coundn't set up IO Streams", t);
|
||||
e = new IOException("Could not set up IO Streams", t);
|
||||
markClosed(e);
|
||||
}
|
||||
close();
|
||||
|
|
|
@ -2258,7 +2258,7 @@ public class HRegionServer implements ClientProtos.ClientService.BlockingInterfa
|
|||
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
|
||||
clazz = Class.forName(classname, true, classLoader);
|
||||
} catch (java.lang.ClassNotFoundException nfe) {
|
||||
throw new IOException("Cound not find class for " + classname);
|
||||
throw new IOException("Could not find class for " + classname);
|
||||
}
|
||||
|
||||
// create an instance of the replication object.
|
||||
|
|
|
@ -176,7 +176,7 @@ public class Merge extends Configured implements Tool {
|
|||
Bytes.toStringBinary(meta.getRegionName()));
|
||||
}
|
||||
if (info2 == null) {
|
||||
throw new IOException("Cound not find " + Bytes.toStringBinary(region2) + " in " +
|
||||
throw new IOException("Could not find " + Bytes.toStringBinary(region2) + " in " +
|
||||
Bytes.toStringBinary(meta.getRegionName()));
|
||||
}
|
||||
HRegion merged = null;
|
||||
|
|
Loading…
Reference in New Issue