From 0f0f592a9339ef94fe74e64efd23c6b3eaa4f21d Mon Sep 17 00:00:00 2001 From: Yi EungJun Date: Tue, 7 Jul 2015 18:53:07 +0900 Subject: [PATCH] Markdown: Fix compile errors on JDK 7 --- app/utils/Markdown.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/Markdown.java b/app/utils/Markdown.java index f86863ed7..6c29e5c27 100644 --- a/app/utils/Markdown.java +++ b/app/utils/Markdown.java @@ -153,7 +153,7 @@ private static String renderWithHighlight(String source, boolean breaks) { * @param options * @return the rendered result or the source if timeout occurs */ - private static String renderByMarked(@Nonnull String source, Object options) throws InterruptedException { + private static String renderByMarked(@Nonnull final String source, final Object options) throws InterruptedException { if (source.isEmpty()) { return source; }