diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2020-12-04 10:42:11 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2020-12-22 10:52:58 +0100 |
commit | 5eabd6995a85e95fd554161c6ddb6a5a25d595b1 (patch) | |
tree | add07348ab6493c965da135677fe9eeac1230fd3 /org.eclipse.jgit.benchmarks/findBugs | |
parent | d6fb42ebd63c9b55d14773d203896af8eaa62d82 (diff) | |
download | jgit-5eabd6995a85e95fd554161c6ddb6a5a25d595b1.tar.gz jgit-5eabd6995a85e95fd554161c6ddb6a5a25d595b1.zip |
[spotbugs] Silence warning DLS_DEAD_LOCAL_STORE in generated classes
Change-Id: I714f5fa48a2443d1a8e2c640b204d3e32438910e
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.benchmarks/findBugs')
-rw-r--r-- | org.eclipse.jgit.benchmarks/findBugs/FindBugsExcludeFilter.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/org.eclipse.jgit.benchmarks/findBugs/FindBugsExcludeFilter.xml b/org.eclipse.jgit.benchmarks/findBugs/FindBugsExcludeFilter.xml new file mode 100644 index 0000000000..ad63e8f877 --- /dev/null +++ b/org.eclipse.jgit.benchmarks/findBugs/FindBugsExcludeFilter.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<FindBugsFilter> + <!-- Silence warnings in classes generated by apt --> + <Match> + <Package name="org.eclipse.jgit.benchmarks.generated" /> + <Bug pattern="DLS_DEAD_LOCAL_STORE" /> + </Match> +</FindBugsFilter> |