refactor: protect fields of Filter

This commit is contained in:
oSumAtrIX 2022-11-19 23:25:14 +01:00
parent 571cf12dca
commit 570f9eaba1
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -89,8 +89,8 @@ final class CustomBlockRule extends BlockRule {
abstract class Filter {
final LithoBlockRegister pathRegister = new LithoBlockRegister();
final LithoBlockRegister identifierRegister = new LithoBlockRegister();
final protected LithoBlockRegister pathRegister = new LithoBlockRegister();
final protected LithoBlockRegister identifierRegister = new LithoBlockRegister();
abstract boolean filter(final String path, final String identifier);
}