Remove unused functions and variables

This commit is contained in:
Dhruv Maroo
2023-04-22 07:08:51 +05:30
parent b51814233d
commit c24ddf0a79
2 changed files with 0 additions and 12 deletions

View File

@@ -86,16 +86,6 @@ public class RustStdAnalyzer extends AbstractAnalyzer {
return false;
}
private static void logToFile(String s) {
try {
writer.append(s);
writer.append("\n");
writer.flush();
} catch (IOException exc) {
// pass
}
}
static private boolean getNextChunk(InputStream stream, byte[] dest, int size) {
byte end;

View File

@@ -22,7 +22,6 @@ import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import docking.ComponentProvider;
import ghidra.util.Msg;
import ghidra.util.task.ConsoleTaskMonitor;
import resources.ResourceManager;
@@ -37,7 +36,6 @@ public class RustDecProvider extends ComponentProvider {
private Address addr;
private DecompInterface decomp_ifc = null;
private CParser transpiler = null;
private static final String EMPTY_LABEL = "<none>";