PowerActionEntry parsing work.

This commit is contained in:
2024-08-19 21:03:34 -04:00
parent 9ae3cb796d
commit 7e8cb056ed
+5 -1
View File
@@ -65,8 +65,12 @@ public class PowerActionParser {
Iterator iterator = Arrays.stream(lineData).iterator();
String headerLine = iterator.next().toString();
ArrayList<String> headerData = new ArrayList<>();
ArrayList<String> effectHeader = new ArrayList<>();
Matcher matcher = STRSPLIT_REGEX.matcher(headerLine.trim());
while (matcher.find())
headerData.add(matcher.group().trim());
return powerActionEntry;
}