mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 03:50: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()));
|
BufferedReader br = new BufferedReader(new InputStreamReader(aslProcess.getInputStream()));
|
||||||
String line;
|
String line;
|
||||||
while ((line = br.readLine()) != null) {
|
while ((line = br.readLine()) != null) {
|
||||||
if (line.toLowerCase().contains("error")) {
|
if (line.toLowerCase().contains("panic")) {
|
||||||
error = line;
|
error = line;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -367,4 +367,4 @@ public class Main extends javax.swing.JFrame {
|
|||||||
private javax.swing.JTextField txtASLDir;
|
private javax.swing.JTextField txtASLDir;
|
||||||
private javax.swing.JTextField txtInputDir;
|
private javax.swing.JTextField txtInputDir;
|
||||||
private javax.swing.JTextField txtOutputDir;
|
private javax.swing.JTextField txtOutputDir;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user