PDB Refinements - integrated new PDB Universal with Load/Download

actions and corrected PDB age related issue.
This commit is contained in:
ghidra1 2020-09-30 11:56:44 -04:00
parent 5c79ebf6e3
commit b816f4a939
36 changed files with 800 additions and 535 deletions

View file

@ -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) {