mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-10 06:02:09 +00:00
Merge branch 'GP-0_ryanmkurtz_PR-6916_Ailuridae_fix-spelling-mistakes'
This commit is contained in:
commit
2ee193293f
@ -137,7 +137,7 @@ public class FontModifierTest {
|
||||
public void testInvalidModifierString() {
|
||||
try {
|
||||
FontModifier.parse("asdfasf");
|
||||
fail("Expected IllegalArgumentExcption");
|
||||
fail("Expected IllegalArgumentException");
|
||||
}
|
||||
catch (ParseException e) {
|
||||
// expected
|
||||
@ -148,7 +148,7 @@ public class FontModifierTest {
|
||||
public void testInvalidModifierString2() {
|
||||
try {
|
||||
FontModifier.parse("[12]aa[13]");
|
||||
fail("Expected IllegalArgumentExcption");
|
||||
fail("Expected IllegalArgumentException");
|
||||
}
|
||||
catch (ParseException e) {
|
||||
// expected
|
||||
@ -159,7 +159,7 @@ public class FontModifierTest {
|
||||
public void testInvalidModifierString3() {
|
||||
try {
|
||||
FontModifier.parse("[12]aa13]");
|
||||
fail("Expected IllegalArgumentExcption");
|
||||
fail("Expected IllegalArgumentException");
|
||||
}
|
||||
catch (ParseException e) {
|
||||
// expected
|
||||
@ -170,7 +170,7 @@ public class FontModifierTest {
|
||||
public void testInvalidModifierString4() {
|
||||
try {
|
||||
FontModifier.parse("[12][plain]sz");
|
||||
fail("Expected IllegalArgumentExcption");
|
||||
fail("Expected IllegalArgumentException");
|
||||
}
|
||||
catch (ParseException e) {
|
||||
// expected
|
||||
|
@ -184,7 +184,7 @@ public class LinkedByteBuffer {
|
||||
}
|
||||
for (;;) {
|
||||
if (byteCount > maxCount) {
|
||||
throw new IOException("Response buffer size exceded for: " + description);
|
||||
throw new IOException("Response buffer size exceeded for: " + description);
|
||||
}
|
||||
do {
|
||||
if (currentPos == BUFFER_SIZE) {
|
||||
@ -277,7 +277,7 @@ public class LinkedByteBuffer {
|
||||
currentBuffer.array[currentPos++] = tok;
|
||||
byteCount += 1;
|
||||
if (byteCount > maxCount) {
|
||||
throw new IOException("Response buffer size exceded for: " + description);
|
||||
throw new IOException("Response buffer size exceeded for: " + description);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user