Skip to content

Commit bd93768

Browse files
committed
removed length check
1 parent 4a71560 commit bd93768

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

checkstyle/checks/LeftCurlyCheck.hx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ class LeftCurlyCheck extends Check {
212212
return;
213213
}
214214
logErrorIf ((option == EOL), 'Left curly should be at EOL (only linebreak or comment after curly)', pos);
215-
logErrorIf ((lineLength > maxLineLength), 'Left curly placement exceeds ${maxLineLength} character limit', pos);
216215
logErrorIf ((!curlyOnNL), 'Left curly should be on new line (only whitespace before curly)', pos);
217216
logErrorIf ((option != NL), 'Left curly unknown option ${option}', pos);
218217
}

0 commit comments

Comments
 (0)