mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
suppress findbugs
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
b34c0d1c98
commit
5afa099d3b
1 changed files with 3 additions and 0 deletions
|
@ -75,6 +75,7 @@ import javax.crypto.NoSuchPaddingException;
|
|||
import androidx.annotation.NonNull;
|
||||
import androidx.core.app.NotificationCompat;
|
||||
import androidx.core.app.NotificationManagerCompat;
|
||||
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
||||
|
||||
public class NotificationJob extends Job {
|
||||
public static final String TAG = "NotificationJob";
|
||||
|
@ -276,6 +277,8 @@ public class NotificationJob extends Job {
|
|||
}
|
||||
}
|
||||
|
||||
@SuppressFBWarnings(value = "HTTP_PARAMETER_POLLUTION",
|
||||
justification = "link and type are from server and expected to be safe")
|
||||
private int executeAction(String actionType, String actionLink, OwnCloudClient client) {
|
||||
HttpMethod method;
|
||||
|
||||
|
|
Loading…
Reference in a new issue