This commit is contained in:
Imbus 2024-06-05 21:37:44 +02:00
parent 21ee7ce753
commit 4cf885e693

View file

@ -23,6 +23,7 @@ public class XLBufferedReader extends BufferedReader {
while (ready()) { while (ready()) {
String string = readLine(); String string = readLine();
int i = string.indexOf('='); int i = string.indexOf('=');
String address = string.substring(0, i); String address = string.substring(0, i);
String content = string.substring(i + 1); String content = string.substring(i + 1);