Skip to content

Commit

Permalink
TNG#1045 : makes TextFileBasedViolationStore have public visibility
Browse files Browse the repository at this point in the history
so that it can be subclassed from any package

Signed-off-by: danhaywood <dan@haywood-associates.co.uk>
  • Loading branch information
danhaywood committed Feb 5, 2023
1 parent 0fb47e5 commit ba34dc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import static java.util.stream.Collectors.toList;

@VisibleForTesting
class TextFileBasedViolationStore implements ViolationStore {
public class TextFileBasedViolationStore implements ViolationStore {
private static final Logger log = LoggerFactory.getLogger(TextFileBasedViolationStore.class);

private static final Pattern UNESCAPED_LINE_BREAK_PATTERN = Pattern.compile("(?<!\\\\)\n");
Expand Down

0 comments on commit ba34dc5

Please sign in to comment.