This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release22.01 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release22.01 by this push: new 388139fe4c Fixed: Reducing scope of variables in common and base packages (OFBIZ-10477) (OFBIZ-10480) 388139fe4c is described below commit 388139fe4cc6a8c81489f6ceac379a6cda4f8b0d Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Fri May 19 09:51:58 2023 +0200 Fixed: Reducing scope of variables in common and base packages (OFBIZ-10477) (OFBIZ-10480) Following https://lists.apache.org/thread/g1z92gtlf9p1rxlc247yg2zqd6bczq7s conversation, this fixes SAFE util methods being transformed to private when obviously they should be public Thanks: Michael for spotting, reporting and confirming it's OK --- framework/base/src/main/java/org/apache/ofbiz/base/util/StringUtil.java | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/base/src/main/java/org/apache/ofbiz/base/util/StringUtil.java b/framework/base/src/main/java/org/apache/ofbiz/base/util/StringUtil.java index 29de6eae72..3bb576dcc1 100644 --- a/framework/base/src/main/java/org/apache/ofbiz/base/util/StringUtil.java +++ b/framework/base/src/main/java/org/apache/ofbiz/base/util/StringUtil.java @@ -439,7 +439,6 @@ public final class StringUtil { /** * @return true, if wrapped string is null or empty; false otherwise */ - @Override public boolean isEmpty() { return (theString == null || theString.isEmpty()); }