|
|
|
@ -65,8 +65,12 @@ public class PowerActionParser {
@@ -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; |
|
|
|
|
} |
|
|
|
|