Fix reduntant line

This commit is contained in:
scria1000 2021-12-09 12:04:37 +00:00 committed by GitHub
parent 87ab68217d
commit 97fc6d2873
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,6 @@ public class SuperscriptParser extends InlineProcessor {
Superscript node = new Superscript();
node.setLiteral(input.substring(caret_pos + 1, i));
node.setLevel(level);
node.setLevel(level);
return node;
}
}