mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
Merge remote-tracking branch 'origin/GP-1164_ryanmkurtz_XDG--SQUASHED'
(Closes #908)
This commit is contained in:
commit
3b0aac92d0
50 changed files with 919 additions and 222 deletions
|
@ -25,6 +25,7 @@ import org.xml.sax.*;
|
|||
import org.xml.sax.helpers.DefaultHandler;
|
||||
import org.xml.sax.helpers.ParserAdapter;
|
||||
|
||||
import ghidra.framework.Application;
|
||||
import ghidra.util.xml.XmlUtilities;
|
||||
|
||||
/**
|
||||
|
@ -174,7 +175,7 @@ public class TOCConverter {
|
|||
* @throws IOException
|
||||
*/
|
||||
private File createTempTOCFile() throws IOException {
|
||||
File tempFile = File.createTempFile("toc", ".xml");
|
||||
File tempFile = Application.createTempFile("toc", ".xml");
|
||||
|
||||
PrintWriter out = new PrintWriter(new FileOutputStream(tempFile));
|
||||
BufferedReader reader = new BufferedReader(new FileReader(sourceFilename));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue