Skip to content

Commit

Permalink
Refactor PureListInlineExpressionParser
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Sep 24, 2023
1 parent c92dbaa commit ffb4ba1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private List<String> split(final String inlineExpression) {
StringBuilder segment = new StringBuilder();
for (int i = 0; i < inlineExpression.length(); i++) {
char each = inlineExpression.charAt(i);
if (each == SPLITTER) {
if (SPLITTER == each) {
result.add(segment.toString().trim());
segment.setLength(0);
} else {
Expand Down

0 comments on commit ffb4ba1

Please sign in to comment.