It would be nice if we fixed the warnings instead of just hiding them.
-Adrian On 2/7/2011 12:46 PM, [email protected] wrote:
Author: mrisaliti Date: Mon Feb 7 20:46:53 2011 New Revision: 1068120 URL: http://svn.apache.org/viewvc?rev=1068120&view=rev Log: Remove compilation warnings of an unused private method in JNDIConfigUtil (OFBIZ-4102) Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/config/JNDIConfigUtil.java Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/config/JNDIConfigUtil.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/config/JNDIConfigUtil.java?rev=1068120&r1=1068119&r2=1068120&view=diff ============================================================================== --- ofbiz/trunk/framework/base/src/org/ofbiz/base/config/JNDIConfigUtil.java (original) +++ ofbiz/trunk/framework/base/src/org/ofbiz/base/config/JNDIConfigUtil.java Mon Feb 7 20:46:53 2011 @@ -43,6 +43,7 @@ public class JNDIConfigUtil { } } + @SuppressWarnings("unused") private static Document getXmlDocument() throws GenericConfigException { try { return ResourceLoader.getXmlDocument(JNDIConfigUtil.JNDI_CONFIG_XML_FILENAME);
