Merge pull request #216 from francescocervone/feature/fix-dexguard-optimization-issue

Fix DexGuard optimization issue
This commit is contained in:
Dimitry 2020-03-23 12:00:32 +02:00 committed by GitHub
commit cca24090c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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