mirror of https://github.com/apache/cloudstack.git
Findbugs finding: the collections should have been made static
This commit is contained in:
parent
ecdee7da9a
commit
5fc03211ff
|
|
@ -102,11 +102,11 @@ public class NiciraNvpApi {
|
|||
|
||||
private final Gson gson;
|
||||
|
||||
protected static Map<Class, String> prefixMap;
|
||||
protected final static Map<Class, String> prefixMap;
|
||||
|
||||
protected static Map<Class, Type> listTypeMap;
|
||||
protected final static Map<Class, Type> listTypeMap;
|
||||
|
||||
protected static Map<String, String> defaultListParams;
|
||||
protected final static Map<String, String> defaultListParams;
|
||||
|
||||
static {
|
||||
prefixMap = new HashMap<Class, String>();
|
||||
|
|
|
|||
Loading…
Reference in New Issue