mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-19 16:40:38 -09:00
Typos
This commit is contained in:
@@ -107,7 +107,7 @@ class DomainObjectDBTransaction implements TransactionInfo {
|
||||
*/
|
||||
void setHasCommittedDBTransaction() {
|
||||
if (getStatus() != Status.COMMITTED) {
|
||||
throw new IllegalStateException("transaction was not committed");
|
||||
throw new IllegalStateException("Transaction was not committed");
|
||||
}
|
||||
hasDBTransaction = true;
|
||||
}
|
||||
@@ -146,7 +146,7 @@ class DomainObjectDBTransaction implements TransactionInfo {
|
||||
}
|
||||
if (entry.status != Status.NOT_DONE) {
|
||||
throw new IllegalStateException(
|
||||
"Attempted to end Transaction " + "more that once: " + entry.description);
|
||||
"Attempted to end Transaction " + "more than once: " + entry.description);
|
||||
}
|
||||
entry.status = commit ? Status.COMMITTED : Status.ABORTED;
|
||||
if (!commit) {
|
||||
|
||||
Reference in New Issue
Block a user