Alexander Wels has uploaded a new change for review. Change subject: webadmin: supress findbugs warning ......................................................................
webadmin: supress findbugs warning - Surpressed findbugs warning as the code is GWT code that is used to generate other code. Change-Id: Iaa7407a647b85f6e1d92302476233b3323eb9aae Signed-off-by: Alexander Wels <[email protected]> --- M frontend/webadmin/modules/frontend/exclude-filters.xml 1 file changed, 11 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/67/22567/1 diff --git a/frontend/webadmin/modules/frontend/exclude-filters.xml b/frontend/webadmin/modules/frontend/exclude-filters.xml index 44bfb56..deaa5aa 100644 --- a/frontend/webadmin/modules/frontend/exclude-filters.xml +++ b/frontend/webadmin/modules/frontend/exclude-filters.xml @@ -3,4 +3,15 @@ <Class name="com.google.gwt.core.client.GWTBridge" /> <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS" /> </Match> + <!-- + findbugs complain of unused field in class. + This is a GWT class and use to generate code + + findbugs reason: + UuF: Unused field (UUF_UNUSED_FIELD) + --> + <Match> + <Class name="org.ovirt.engine.ui.frontend.communication.RefreshActiveModel" /> + <Bug code="UuF"/> + </Match> </FindBugsFilter> -- To view, visit http://gerrit.ovirt.org/22567 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Iaa7407a647b85f6e1d92302476233b3323eb9aae Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alexander Wels <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
