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

Commit

Permalink
Markdown: Fix compile errors on JDK 7
Browse files Browse the repository at this point in the history
  • Loading branch information
Yi EungJun committed Jul 11, 2015
1 parent 4b24a3f commit 0f0f592
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 0f0f592

Please sign in to comment.