mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
PDB Refinements - integrated new PDB Universal with Load/Download
actions and corrected PDB age related issue.
This commit is contained in:
parent
5c79ebf6e3
commit
b816f4a939
36 changed files with 800 additions and 535 deletions
|
@ -165,10 +165,9 @@ public class MessageLog {
|
|||
private String toStringWithWarning() {
|
||||
StringBuilder output = new StringBuilder();
|
||||
if (count > maxSize) {
|
||||
output.append('\n').append('\n');
|
||||
output.append("There were too many messages to display.\n");
|
||||
output.append((count - maxSize)).append(" messages have been truncated.");
|
||||
output.append('\n').append('\n');
|
||||
output.append((count - maxSize)).append(" messages have been truncated.\n");
|
||||
output.append('\n');
|
||||
}
|
||||
|
||||
for (String s : messages) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue