Alissa Bonas has uploaded a new change for review. Change subject: frontend: ignore in findbugs EventArgs unconfirmed cast errors ......................................................................
frontend: ignore in findbugs EventArgs unconfirmed cast errors Ignore in findbugs errors related to casting EventArgs. The casting is safe in this case, and a future refactoring will make findbug warning resolved in any case.(RFE #1034844) This is patch #8 following http://gerrit.ovirt.org/#/c/21975/ Change-Id: I556c524fa99138e3172c635ac619bd8fba39eefd Signed-off-by: Alissa Bonas <[email protected]> --- M frontend/webadmin/modules/webadmin/exclude-filters.xml 1 file changed, 35 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/89/22089/1 diff --git a/frontend/webadmin/modules/webadmin/exclude-filters.xml b/frontend/webadmin/modules/webadmin/exclude-filters.xml index c874745..df872a1 100644 --- a/frontend/webadmin/modules/webadmin/exclude-filters.xml +++ b/frontend/webadmin/modules/webadmin/exclude-filters.xml @@ -337,7 +337,7 @@ </Match> <Match> - <Class name="org.ovirt.engine.ui.webadmin.section.main.view.popup.host.HostManagementPopupView$3" /> + <Class name="org.ovirt.engine.ui.webadmin.section.main.view.popup.host.ManualFenceConfirmationPopupView$1" /> <Bug pattern="BC_UNCONFIRMED_CAST"/> </Match> @@ -356,5 +356,39 @@ <Bug pattern="BC_UNCONFIRMED_CAST"/> </Match> + <Match> + <Class name="org.ovirt.engine.ui.webadmin.section.main.view.popup.profile.VnicProfilePopupView$4" /> + <Bug pattern="BC_UNCONFIRMED_CAST"/> + </Match> + + <Match> + <Class name="org.ovirt.engine.ui.webadmin.section.main.view.popup.quota.QuotaPopupView$15" /> + <Bug pattern="BC_UNCONFIRMED_CAST"/> + </Match> + + <Match> + <Class name="org.ovirt.engine.ui.webadmin.section.main.view.popup.user.ManageEventsPopupView$3" /> + <Bug pattern="BC_UNCONFIRMED_CAST"/> + </Match> + + <Match> + <Class name="org.ovirt.engine.ui.webadmin.section.main.view.tab.gluster.SubTabVolumeGeneralView$1" /> + <Bug pattern="BC_UNCONFIRMED_CAST"/> + </Match> + + <Match> + <Class name="org.ovirt.engine.ui.webadmin.uicommon.model.BookmarkModelProvider$5" /> + <Bug pattern="BC_UNCONFIRMED_CAST"/> + </Match> + + <Match> + <Class name="org.ovirt.engine.ui.webadmin.uicommon.model.SimpleSelectionTreeNodeModel$1" /> + <Bug pattern="BC_UNCONFIRMED_CAST"/> + </Match> + + <Match> + <Class name="org.ovirt.engine.ui.webadmin.widget.host.HostInterfaceForm$2" /> + <Bug pattern="BC_UNCONFIRMED_CAST"/> + </Match> </FindBugsFilter> -- To view, visit http://gerrit.ovirt.org/22089 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I556c524fa99138e3172c635ac619bd8fba39eefd Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alissa Bonas <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
