Skip to content

Commit b7ea416

Browse files
committed
CategoryController: fix CheckStyle warning about long line properly.
Should be in c8f2dca commit. Addressed to #465 No code changes.
1 parent c8f2dca commit b7ea416

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/ru/mystamps/web/controller/CategoryController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ public class CategoryController {
6161

6262
@InitBinder("addCategoryForm")
6363
protected void initBinder(WebDataBinder binder) {
64-
// CheckStyle: ignore LineLength for next 1 line
65-
// We can't use StringTrimmerEditor here because "only one single registered custom editor per property path is supported".
64+
// We can't use StringTrimmerEditor here because "only one single registered custom
65+
// editor per property path is supported".
6666
ReplaceRepeatingSpacesEditor editor = new ReplaceRepeatingSpacesEditor(true);
6767
binder.registerCustomEditor(String.class, "name", editor);
6868
binder.registerCustomEditor(String.class, "nameRu", editor);

0 commit comments

Comments
 (0)