mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Merge remote-tracking branch 'origin/GP-3837_Dan_traceRmiHelp--SQUASHED'
This commit is contained in:
commit
636dc6fdc6
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