diff options
author | Thomas <> | 2023-05-31 09:05:19 +0200 |
---|---|---|
committer | Thomas <> | 2023-05-31 09:05:19 +0200 |
commit | b8807c30b2ef988226573c6b5bf2f6b3de6aac4d (patch) | |
tree | d3fb30b45db741aa19657f39cedabe7e353ada0b /eaaf_core_utils/checks/spotbugs-exclude.xml | |
parent | dc9595c7aea48583d4bd075b398b4ce68b626965 (diff) | |
download | EAAF-Components-b8807c30b2ef988226573c6b5bf2f6b3de6aac4d.tar.gz EAAF-Components-b8807c30b2ef988226573c6b5bf2f6b3de6aac4d.tar.bz2 EAAF-Components-b8807c30b2ef988226573c6b5bf2f6b3de6aac4d.zip |
refact(core): change some more internal representation to make it JSON serializable
Diffstat (limited to 'eaaf_core_utils/checks/spotbugs-exclude.xml')
-rw-r--r-- | eaaf_core_utils/checks/spotbugs-exclude.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eaaf_core_utils/checks/spotbugs-exclude.xml b/eaaf_core_utils/checks/spotbugs-exclude.xml index 58ed1595..2b258e7c 100644 --- a/eaaf_core_utils/checks/spotbugs-exclude.xml +++ b/eaaf_core_utils/checks/spotbugs-exclude.xml @@ -30,10 +30,14 @@ </OR> </Match> <Match> - <Class name="at.gv.egiz.eaaf.core.impl.data.ExceptionContainer" /> + <OR> + <Class name="at.gv.egiz.eaaf.core.impl.data.ExceptionContainer" /> + <Class name="at.gv.egiz.eaaf.core.impl.data.ExceptionContainer$ExceptionContainerBuilder" /> + </OR> <OR> <Bug pattern="JACKSON_UNSAFE_DESERIALIZATION" /> <!-- Use custom deserialization that implements some harding --> - <Bug pattern="EI_EXPOSE_REP" /> + <Bug pattern="EI_EXPOSE_REP" /> + <Bug pattern="EI_EXPOSE_REP2" /> </OR> </Match> </FindBugsFilter>
\ No newline at end of file |