You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2015/03/25 18:14:54 UTC

git commit: updated refs/heads/master to 7b51fda

Repository: cloudstack
Updated Branches:
  refs/heads/master 05099734f -> 7b51fda3b


finbugs: mark false positive
 hostuuid might be found after ten iterations.

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

Branch: refs/heads/master
Commit: 7b51fda3b032da02dc750f28b2ae2242a1c326b5
Parents: 0509973
Author: Daan Hoogland <dh...@schubergphilis.com>
Authored: Wed Mar 25 18:14:57 2015 +0100
Committer: Daan Hoogland <dh...@schubergphilis.com>
Committed: Wed Mar 25 18:14:57 2015 +0100

----------------------------------------------------------------------
 tools/checkstyle/src/main/resources/findbugsExcludeFilter.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/7b51fda3/tools/checkstyle/src/main/resources/findbugsExcludeFilter.xml
----------------------------------------------------------------------
diff --git a/tools/checkstyle/src/main/resources/findbugsExcludeFilter.xml b/tools/checkstyle/src/main/resources/findbugsExcludeFilter.xml
index c96e2fe..d1b6384 100644
--- a/tools/checkstyle/src/main/resources/findbugsExcludeFilter.xml
+++ b/tools/checkstyle/src/main/resources/findbugsExcludeFilter.xml
@@ -28,6 +28,12 @@
        <Bug pattern="DM_DEFAULT_ENCODING" />
      </Match>
 
+     <Match>
+       <Class name="CitrixResourceBase" />
+       <Method name="transferManagementNetwork" />
+       <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" />
+     </Match>
+
      <!-- project: utils -->
      <Match>
        <Class name="SSHCmdHelper" />