mirror of https://github.com/apache/cloudstack.git
findbugs: scope and final to mitgate possible abuse of fields
This commit is contained in:
parent
4eece72eb1
commit
07102b400f
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue