Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -423,11 +423,10 @@ public static String convertNodeToSource(AstNode node) {


/**
* Returns the index of the first {@code "("}, working backwards if there is no
* matching closing bracket.
*
* Returns the index of the first ( working backwards if there is no
* matching closing bracket
*
* @param text
* @param text The text to search through which may be {@code null}.
*/
public static int findIndexOfFirstOpeningBracket(String text) {
int index = 0;
Expand Down
2 changes: 1 addition & 1 deletion config/checkstyle/lsSuppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
For now we're ignoring several issues that will take some time to address.
TODO: Remove these issues one by one.
-->
<suppress files=".*src[\\/]main[\\/]java[\\/]org[\\/]fife[\\/]rsta[\\/]ac[\\/]js[\\/].*" checks="AvoidNestedBlocks|CommentsIndentation|ExplicitInitialization|IllegalType|JavadocContentLocation|JavadocTagContinuationIndentation|JavadocMethod|JavadocPackage|JavadocStyle|LineLength|MissingJavadocMethod|MissingJavadocType|NeedBraces|NonEmptyAtclauseDescription|OperatorWrap|StaticVariableName|VisibilityModifier"/>
<suppress files=".*src[\\/]main[\\/]java[\\/]org[\\/]fife[\\/]rsta[\\/]ac[\\/]js[\\/].*" checks="AvoidNestedBlocks|CommentsIndentation|ExplicitInitialization|IllegalType|JavadocTagContinuationIndentation|JavadocMethod|JavadocPackage|JavadocStyle|LineLength|MissingJavadocMethod|MissingJavadocType|NeedBraces|NonEmptyAtclauseDescription|OperatorWrap|StaticVariableName|VisibilityModifier"/>

<!-- Lots of blocks are empty with "TODO" comments describing future implementations -->
<suppress files=".*src[\\/]main[\\/]java[\\/]org[\\/]fife[\\/]rsta[\\/]ac[\\/].*" checks="EmptyBlock"/>
Expand Down