remove unused debug lines

This commit is contained in:
Downforce Agent 2024-07-09 23:29:37 -05:00
parent 4d093e7ce8
commit 1c4f19d84b

View File

@ -151,16 +151,7 @@ public class Bert implements ActionListener {
Process p; Process p;
try { try {
if (!Main.windows) {p = Runtime.getRuntime().exec(new String[]{"bash","-c","cd " + Main.inpath + ";wine pkg2zip.exe -x asset.pkg " + key.toString()});} if (!Main.windows) {p = Runtime.getRuntime().exec(new String[]{"bash","-c","cd " + Main.inpath + ";wine pkg2zip.exe -x asset.pkg " + key.toString()});}
else {p = Runtime.getRuntime().exec(new String[]{Main.inpath + "pkg2zip.exe", "-x", "asset.pkg", key.toString()}, null, new File(Main.inpath)); else {p = Runtime.getRuntime().exec(new String[]{Main.inpath + "pkg2zip.exe", "-x", "asset.pkg", key.toString()}, null, new File(Main.inpath));} //inpath cannot change here
InputStream debugin = new BufferedInputStream(p.getInputStream());
FileOutputStream debugout = new FileOutputStream(Main.inpath + "log1.txt");
int c;
while ((c = debugin.read()) != -1) {
debugout.write(c);
}
debugin.close();
debugout.close();
} //inpath cannot change here
p.waitFor(); p.waitFor();
} catch (Exception e) { } catch (Exception e) {
System.out.println(e.getMessage()); System.out.println(e.getMessage());