From: Felix Dörre Date: Sun, 19 Mar 2017 16:26:12 +0000 (+0100) Subject: upd: keep coverity happy by explicitly throwing X-Git-Url: https://code.wpia.club/?p=gigi.git;a=commitdiff_plain;h=38a19680249238f27107aff9b85c12ff086e505f upd: keep coverity happy by explicitly throwing Change-Id: I515bdbb52f4aa792f506d1dbbda4a9632f20e136 --- diff --git a/src/club/wpia/gigi/pages/account/domain/DomainOverview.java b/src/club/wpia/gigi/pages/account/domain/DomainOverview.java index bbed095b..496d71e8 100644 --- a/src/club/wpia/gigi/pages/account/domain/DomainOverview.java +++ b/src/club/wpia/gigi/pages/account/domain/DomainOverview.java @@ -46,6 +46,6 @@ public class DomainOverview extends ManagedMultiFormPage { } else if (req.getParameter("delete") != null) { return Form.getForm(req, DomainManagementForm.class); } - return null; + throw new CSRFException(); } }