mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Fix spelling mistakes
This commit is contained in:
parent
7148590e5c
commit
d45820a850
2 changed files with 6 additions and 6 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue