This is an automated email from the ASF dual-hosted git repository.
ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/master by this push:
new 20d622c757 Fix checkstyle
20d622c757 is described below
commit 20d622c7572cd697670422f2d98639bf4b88daca
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Sat Feb 1 09:10:26 2025 +0100
Fix checkstyle
---
.../syncope/client/ui/commons/markup/html/form/AjaxTextFieldPanel.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/markup/html/form/AjaxTextFieldPanel.java
b/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/markup/html/form/AjaxTextFieldPanel.java
index a1adcbc654..0478abbf16 100644
---
a/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/markup/html/form/AjaxTextFieldPanel.java
+++
b/client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/markup/html/form/AjaxTextFieldPanel.java
@@ -89,7 +89,7 @@ public class AjaxTextFieldPanel extends TextFieldPanel
implements Cloneable {
@Override
public <C> IConverter<C> getConverter(final Class<C> type) {
return AjaxTextFieldPanel.this.getConverter().
- map(converter -> (IConverter<C>)converter).
+ map(converter -> (IConverter<C>) converter).
orElseGet(() -> super.getConverter(type));
}
};