mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-2974: Fixing warnings
This commit is contained in:
parent
113156a19f
commit
7fa3389119
662 changed files with 2198 additions and 2216 deletions
|
@ -107,7 +107,7 @@ public class PatternStats extends GhidraScript implements PatternFactory {
|
|||
if (exampleFalse.size() >= MAX_EXAMPLE_PER) {
|
||||
return;
|
||||
}
|
||||
exampleFalse.add(new Long(addr.getOffset()));
|
||||
exampleFalse.add(Long.valueOf(addr.getOffset()));
|
||||
}
|
||||
|
||||
public void saveXml(StringBuffer buf) {
|
||||
|
@ -140,7 +140,7 @@ public class PatternStats extends GhidraScript implements PatternFactory {
|
|||
while (parser.peek().isStart()) {
|
||||
parser.start("example");
|
||||
long value = SpecXmlUtils.decodeLong(parser.end().getText());
|
||||
exampleFalse.add(new Long(value));
|
||||
exampleFalse.add(Long.valueOf(value));
|
||||
}
|
||||
parser.end();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue