Skip to content

Commit

Permalink
GP-0 removed debug lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidra007 committed May 9, 2023
1 parent 9f11cf4 commit 02b4a86
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@

import java.io.File;
import java.io.PrintWriter;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.*;
import java.util.stream.Collectors;

Expand All @@ -82,7 +80,6 @@
import ghidra.program.model.listing.*;
import ghidra.program.model.mem.MemoryBlock;
import ghidra.program.model.symbol.Symbol;
import ghidra.program.model.symbol.SymbolIterator;
import ghidra.program.util.GhidraProgramUtilities;
import ghidra.service.graph.*;
import ghidra.util.exception.CancelledException;
Expand Down Expand Up @@ -212,8 +209,6 @@ else if (isPE() && isGcc()){
nameVfunctions, hasDebugSymbols, monitor);
}
else if (isGcc()) {
println("Before popping up dialog..");
printTime();
boolean runGcc= askYesNo("Gcc Class Recovery Still Under Development",
"I understand that Gcc class recovery is still under development and my results will be incomplete but want to run this anyway.");

Expand Down Expand Up @@ -1539,13 +1534,6 @@ private StringBuffer createClassDefinitionString(RecoveredClass recoveredClass)

return stringBuffer;
}


private void printTime() {
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy/MM/dd HH:mm:ss");
LocalDateTime now = LocalDateTime.now();
println(dtf.format(now));
}

private boolean isStringInProgramMemory(String string) {

Expand Down

0 comments on commit 02b4a86

Please sign in to comment.