Author: jleroux Date: Tue Aug 13 08:48:26 2019 New Revision: 1865017 URL: http://svn.apache.org/viewvc?rev=1865017&view=rev Log: Improved: Update build.gradle to the latest dependencies (OFBIZ-11151)
Removes the last Java code warnings by using @SuppressWarnings("rawtypes") for the org.owasp.esapi.codecs.Codec I see no better solution since we have no access to this code. Modified: ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilCodec.java Modified: ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilCodec.java URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilCodec.java?rev=1865017&r1=1865016&r2=1865017&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilCodec.java (original) +++ ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilCodec.java Tue Aug 13 08:48:26 2019 @@ -44,6 +44,7 @@ import org.owasp.html.HtmlPolicyBuilder; import org.owasp.html.PolicyFactory; import org.owasp.html.Sanitizers; +@SuppressWarnings("rawtypes") public class UtilCodec { private static final String module = UtilCodec.class.getName(); private static final HtmlEncoder htmlEncoder = new HtmlEncoder();