Skip to content

Commit

Permalink
Suppress more spotbugs warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite committed Feb 10, 2024
1 parent d6c93b6 commit 261d3bb
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,11 @@ public class MaskPasswordsConfig {
* Deprecated in favor of globalVarMaskRegexesMap which has label names mapped to value's for better identification
*/
@Deprecated
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "Retain API compatibility")
public List<VarMaskRegex> globalVarMaskRegexes;
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "Retain API compatibility")
public List<VarMaskRegexEntry> globalVarMaskRegexesU;
@SuppressFBWarnings(value = "PA_PUBLIC_PRIMITIVE_ATTRIBUTE", justification = "Retain API compatibility")
public HashMap<String, VarMaskRegex> globalVarMaskRegexesMap;
/**
* Whether or not to enable the plugin globally on ALL BUILDS.
Expand Down

0 comments on commit 261d3bb

Please sign in to comment.