Fix typos

This commit is contained in:
Eddú Meléndez
2015-06-04 17:19:05 -05:00
committed by Stephane Nicoll
parent cc169c5009
commit baca62a6c0
13 changed files with 15 additions and 15 deletions

View File

@@ -38,7 +38,7 @@ import java.util.logging.Logger;
*/
public class Handler extends URLStreamHandler {
// NOTE: in order to be found as a URL protocol hander, this class must be public,
// NOTE: in order to be found as a URL protocol handler, this class must be public,
// must be named Handler and must be in a package ending '.jar'
private static final String FILE_PROTOCOL = "file:";

View File

@@ -128,7 +128,7 @@ public class RandomAccessDataFileTests {
}
@Test
public void intputStreamReadNullBytesWithOffset() throws Exception {
public void inputStreamReadNullBytesWithOffset() throws Exception {
this.thrown.expect(NullPointerException.class);
this.thrown.expectMessage("Bytes must not be null");
this.inputStream.read(null, 0, 1);