You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by hu...@apache.org on 2014/01/23 17:16:16 UTC

[2/4] git commit: updated refs/heads/master to 50b6de4

Findbugs finding: the collections should have been made static


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5fc03211
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5fc03211
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5fc03211

Branch: refs/heads/master
Commit: 5fc03211ffc2205c4e94ba87bafaa7cd87070691
Parents: ecdee7d
Author: Hugo Trippaers <ht...@schubergphilis.com>
Authored: Thu Jan 23 15:52:46 2014 +0000
Committer: Hugo Trippaers <ht...@schubergphilis.com>
Committed: Thu Jan 23 15:52:46 2014 +0000

----------------------------------------------------------------------
 .../nicira-nvp/src/com/cloud/network/nicira/NiciraNvpApi.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5fc03211/plugins/network-elements/nicira-nvp/src/com/cloud/network/nicira/NiciraNvpApi.java
----------------------------------------------------------------------
diff --git a/plugins/network-elements/nicira-nvp/src/com/cloud/network/nicira/NiciraNvpApi.java b/plugins/network-elements/nicira-nvp/src/com/cloud/network/nicira/NiciraNvpApi.java
index d398844..83d0075 100644
--- a/plugins/network-elements/nicira-nvp/src/com/cloud/network/nicira/NiciraNvpApi.java
+++ b/plugins/network-elements/nicira-nvp/src/com/cloud/network/nicira/NiciraNvpApi.java
@@ -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>();