@@ -423,7 +423,7 @@ public class PrintServiceImpl implements PrintService {
Pattern pattern = Pattern.compile("\\$F\\{([^\\$]*)\\}");
Matcher matcher = pattern.matcher(line);
while (matcher.find()) {
- result.add(matcher.group(1));
+ result.add(matcher.group(1).toUpperCase());
}
bufferedReader.close();