This is an automated email from the ASF dual-hosted git repository. deepak 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 ec61c41720 Fixed checkstyle error ec61c41720 is described below commit ec61c417207a8105e33b3af7d3fda82bdfd260a1 Author: Deepak Dixit <dee...@apache.org> AuthorDate: Fri Aug 30 00:35:03 2024 +0530 Fixed checkstyle error --- .../src/main/java/org/apache/ofbiz/widget/model/ScreenFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/widget/src/main/java/org/apache/ofbiz/widget/model/ScreenFactory.java b/framework/widget/src/main/java/org/apache/ofbiz/widget/model/ScreenFactory.java index 7da6260139..faea40b76c 100644 --- a/framework/widget/src/main/java/org/apache/ofbiz/widget/model/ScreenFactory.java +++ b/framework/widget/src/main/java/org/apache/ofbiz/widget/model/ScreenFactory.java @@ -121,7 +121,7 @@ public class ScreenFactory { long startTime = System.currentTimeMillis(); URL screenFileUrl = null; screenFileUrl = FlexibleLocation.resolveLocation(resourceName); - if (screenFileUrl == null || UtilValidate.urlInString(screenFileUrl.toString())) { + if (screenFileUrl == null || UtilValidate.urlInString(screenFileUrl.toString())) { throw new IllegalArgumentException("Could not resolve location to URL: " + resourceName); } Document screenFileDoc = UtilXml.readXmlDocument(screenFileUrl, true, true);