Fix DexGuard optimization issue

This commit is contained in:
Francesco Cervone 2020-03-19 16:12:36 +01:00
parent 8e3d898b40
commit 9c469be176

View File

@ -25,7 +25,7 @@ public class StrikeHandler extends TagHandler {
static { static {
boolean hasMarkdownImplementation; boolean hasMarkdownImplementation;
try { try {
org.commonmark.ext.gfm.strikethrough.Strikethrough.class.getName(); Class.forName("org.commonmark.ext.gfm.strikethrough.Strikethrough");
hasMarkdownImplementation = true; hasMarkdownImplementation = true;
} catch (Throwable t) { } catch (Throwable t) {
hasMarkdownImplementation = false; hasMarkdownImplementation = false;