|
if(openParen-nextCloseBracket==1) |
Missing parentheses in a link, caused IndexOutOfBoundsException
Fixed by adding an if statement that checks if openParen or closeParen are -1, breaks if condition passes
Enter before line 24
if(openParen == -1 || closeParen == -1) {
break;
}

markdown-parse/MarkdownParse.java
Line 24 in 9d64809
Missing parentheses in a link, caused IndexOutOfBoundsException
Fixed by adding an if statement that checks if openParen or closeParen are -1, breaks if condition passes
Enter before line 24