Skip to content
This repository has been archived by the owner on Sep 12, 2018. It is now read-only.

Commit

Permalink
Merge branch 'fix/markdown-compile-error'
Browse files Browse the repository at this point in the history
* fix/markdown-compile-error:
  Markdown: Fix compile errors on JDK 7

Reviewed-by: 김창성 <changsung.kim@navercorp.com>
  • Loading branch information
Yi EungJun committed Jul 11, 2015
2 parents 4b24a3f + 0f0f592 commit ef8ba03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/Markdown.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit ef8ba03

Please sign in to comment.