mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
Changed error keyword from error to panic
This commit is contained in:
@@ -288,7 +288,7 @@ public class Main extends javax.swing.JFrame {
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(aslProcess.getInputStream()));
|
||||
String line;
|
||||
while ((line = br.readLine()) != null) {
|
||||
if (line.toLowerCase().contains("error")) {
|
||||
if (line.toLowerCase().contains("panic")) {
|
||||
error = line;
|
||||
}
|
||||
}
|
||||
@@ -367,4 +367,4 @@ public class Main extends javax.swing.JFrame {
|
||||
private javax.swing.JTextField txtASLDir;
|
||||
private javax.swing.JTextField txtInputDir;
|
||||
private javax.swing.JTextField txtOutputDir;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user