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;