mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-3837: Update Debugger Help for Trace RMI.
This commit is contained in:
parent
6c60bd0313
commit
c634283544
134 changed files with 3214 additions and 1550 deletions
|
@ -38,7 +38,14 @@ public class HTMLFileParser {
|
|||
String text;
|
||||
while ((text = rdr.readLine()) != null) {
|
||||
Line line = new Line(file, text, rdr.getLineNumber());
|
||||
processLine(line, rdr, file, tagProcessor);
|
||||
try {
|
||||
processLine(line, rdr, file, tagProcessor);
|
||||
}
|
||||
catch (Exception e) {
|
||||
String message =
|
||||
"Error parsing HTML at %s:%s.".formatted(file, rdr.getLineNumber());
|
||||
throw new IOException(message, e);
|
||||
}
|
||||
}
|
||||
tagProcessor.endOfFile();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue