findbugs: scope and final to mitgate possible abuse of fields

This commit is contained in:
Daan Hoogland 2014-03-10 09:39:35 +01:00
parent 4eece72eb1
commit 07102b400f
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ import org.apache.log4j.Logger;
*/
public class ParamGenericValidationWorker implements DispatchWorker {
protected static Logger s_logger = Logger.getLogger(ParamGenericValidationWorker.class.getName());
static Logger s_logger = Logger.getLogger(ParamGenericValidationWorker.class.getName());
protected static List<String> defaultParamNames = new ArrayList<String>();
protected static final List<String> defaultParamNames = new ArrayList<String>();
static {
defaultParamNames.add(ApiConstants.CTX_START_EVENT_ID);