This is an automated email from the ASF dual-hosted git repository. nmalin pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new c5a1a91 Fixed: Correct checkstyle typo c5a1a91 is described below commit c5a1a91fbd6fab79d47c353cc19befff850191a2 Author: Nicolas Malin <nicolas.ma...@nereide.fr> AuthorDate: Fri Jul 23 09:10:09 2021 +0200 Fixed: Correct checkstyle typo --- .../src/main/java/org/apache/ofbiz/widget/model/HtmlWidget.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/widget/src/main/java/org/apache/ofbiz/widget/model/HtmlWidget.java b/framework/widget/src/main/java/org/apache/ofbiz/widget/model/HtmlWidget.java index 45bb9fa..3fcc901 100644 --- a/framework/widget/src/main/java/org/apache/ofbiz/widget/model/HtmlWidget.java +++ b/framework/widget/src/main/java/org/apache/ofbiz/widget/model/HtmlWidget.java @@ -140,8 +140,8 @@ public class HtmlWidget extends ModelScreenWidget { subWidgets.add(new HtmlTemplateDecorator(modelScreen, childElement)); break; default: - throw new IllegalArgumentException("Tag not supported under the platform-specific -> html tag with name: " + - childElement.getNodeName()); + throw new IllegalArgumentException("Tag not supported under the platform-specific -> html tag with name: " + + childElement.getNodeName()); } } this.subWidgets = Collections.unmodifiableList(subWidgets);