Skip to content

Commit

Permalink
Fixing error prone warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ldhardy committed Jan 17, 2025
1 parent 7591b83 commit 294cad4
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
/**
* A utility class for testing regular expressions.
*/
public class RegularExpressionTestUtil {
protected static Logger logger = LoggerFactory.getLogger(RegularExpressionTestUtil.class);
public final class RegularExpressionTestUtil {
private static final Logger logger = LoggerFactory.getLogger(RegularExpressionTestUtil.class);

private RegularExpressionTestUtil() {}

/**
* A method to test a list of values that should and should not match a particular regular expression. One of the two
Expand Down

0 comments on commit 294cad4

Please sign in to comment.