Fix parser

This commit is contained in:
Jesse Boyd 2018-09-05 03:02:16 +10:00
parent db7110dac8
commit aa33250d42
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public abstract class FaweParser<T> extends InputParser<T> {
last = i + 1;
continue outer;
default:
if (StringMan.getMatchingBracket(c) != c) {
if (c == '[') {
int next = StringMan.findMatchingBracket(toParse, i);
if (next != -1) {
i = next;