Skip to content

Commit

Permalink
Updated 3rd party library RSyntaxTextArea to v2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Argent77 committed Jul 28, 2014
1 parent 65a1300 commit cf964ca
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
Binary file added lib/rsyntaxtextarea/RSyntaxTextArea-2.5.3.zip
Binary file not shown.
Binary file not shown.
Binary file modified lib/rsyntaxtextarea/rsyntaxtextarea.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/infinity/resource/text/modes/BCSTokenMaker.java
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public void addToken(Segment segment, int start, int end, int tokenType, int sta
}

@Override
public String[] getLineCommentStartAndEnd()
public String[] getLineCommentStartAndEnd(int languageIndex)
{
return new String[]{"// ", null};
}
Expand Down
2 changes: 1 addition & 1 deletion src/infinity/resource/text/modes/GLSLTokenMaker.flex
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ import org.fife.ui.rsyntaxtextarea.TokenImpl;
* it out.
*/
@Override
public String[] getLineCommentStartAndEnd() {
public String[] getLineCommentStartAndEnd(int languageIndex) {
return new String[] { "//", null };
}

Expand Down
2 changes: 1 addition & 1 deletion src/infinity/resource/text/modes/GLSLTokenMaker.java
Original file line number Diff line number Diff line change
Expand Up @@ -3764,7 +3764,7 @@ public void addToken(char[] array, int start, int end, int tokenType, int startO
* it out.
*/
@Override
public String[] getLineCommentStartAndEnd() {
public String[] getLineCommentStartAndEnd(int languageIndex) {
return new String[] { "//", null };
}

Expand Down

0 comments on commit cf964ca

Please sign in to comment.