Skip to content

Commit

Permalink
Fix #454: Make 'RSyntaxDocument.getTokenListForLine' overridable. This
Browse files Browse the repository at this point in the history
allows folks to implement syntax highlighting when they cannot honor
the TokenMaker contract/API easily"
  • Loading branch information
bobbylight committed Sep 17, 2022
1 parent a020749 commit 95e9072
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -401,7 +401,7 @@ public String getSyntaxStyle() {
* >= 0.
* @return A token list representing the specified line.
*/
public final Token getTokenListForLine(int line) {
public Token getTokenListForLine(int line) {

tokenRetrievalCount++;
if (line==lastLine && cachedTokenList!=null) {
Expand Down

0 comments on commit 95e9072

Please sign in to comment.