|
|
@ -63,7 +63,7 @@ public class EffectsParser { |
|
|
|
try { |
|
|
|
try { |
|
|
|
String rawData = compiledLines.get(1).replace(" ", ""); |
|
|
|
String rawData = compiledLines.get(1).replace(" ", ""); |
|
|
|
if(rawData.contains("\"")){ |
|
|
|
if(rawData.contains("\"")){ |
|
|
|
int startIndex = rawData.indexOf('"'); |
|
|
|
int startIndex = rawData.indexOf('"') + 1; |
|
|
|
int endIndex = rawData.lastIndexOf('"'); |
|
|
|
int endIndex = rawData.lastIndexOf('"'); |
|
|
|
char[] nameValue = rawData.toCharArray(); |
|
|
|
char[] nameValue = rawData.toCharArray(); |
|
|
|
String name = ""; |
|
|
|
String name = ""; |
|
|
|