We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f2dca commit b7ea416Copy full SHA for b7ea416
src/main/java/ru/mystamps/web/controller/CategoryController.java
@@ -61,8 +61,8 @@ public class CategoryController {
61
62
@InitBinder("addCategoryForm")
63
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".
+ // We can't use StringTrimmerEditor here because "only one single registered custom
+ // editor per property path is supported".
66
ReplaceRepeatingSpacesEditor editor = new ReplaceRepeatingSpacesEditor(true);
67
binder.registerCustomEditor(String.class, "name", editor);
68
binder.registerCustomEditor(String.class, "nameRu", editor);
0 commit comments