Shahar Havivi has uploaded a new change for review. Change subject: findbugs: Load of known null value ......................................................................
findbugs: Load of known null value findbugs complains about loading known null to a variable in this case we are using it for equals check and its intended NP: Load of known null value (NP_LOAD_OF_KNOWN_NULL_VALUE) Change-Id: Ica07cdd87a3851e6efb6e2566bd87dbc2342ab7e Signed-off-by: Shahar Havivi <[email protected]> --- M frontend/webadmin/modules/uicommonweb/exclude-filters.xml 1 file changed, 11 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/22/15322/1 diff --git a/frontend/webadmin/modules/uicommonweb/exclude-filters.xml b/frontend/webadmin/modules/uicommonweb/exclude-filters.xml index e9ed26e..97f8211 100644 --- a/frontend/webadmin/modules/uicommonweb/exclude-filters.xml +++ b/frontend/webadmin/modules/uicommonweb/exclude-filters.xml @@ -9,4 +9,15 @@ <Class name="org.ovirt.engine.ui.uicommonweb.models.hosts.HostInterfaceListModel" /> <Bug code="MS"/> </Match> + + <!-- + findbugs complains about loading known null to a variable + in this case we are using it for equals check and its intended + + NP: Load of known null value (NP_LOAD_OF_KNOWN_NULL_VALUE) + --> + <Match> + <Class name="org.ovirt.engine.ui.uicommonweb.models.hosts.HostSetupNetworksModel" /> + <Bug code="NP"/> + </Match> </FindBugsFilter> -- To view, visit http://gerrit.ovirt.org/15322 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ica07cdd87a3851e6efb6e2566bd87dbc2342ab7e Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Shahar Havivi <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
