Skip to content

Commit

Permalink
[sinttest] Configuration.normalizeSpecification() should be public
Browse files Browse the repository at this point in the history
It is likely to be desirable to re-use the normalization of specification references, for example in implementations of `TestRunResultProcessor`.
  • Loading branch information
guusdk committed May 10, 2024
1 parent e79429e commit 4cc9a7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ public boolean isSpecificationDisabled(String specification) {
return disabledSpecifications.contains(normalizeSpecification(specification));
}

static String normalizeSpecification(String specification) {
public static String normalizeSpecification(String specification) {
if (specification == null || specification.isBlank()) {
return null;
}
Expand Down

0 comments on commit 4cc9a7d

Please sign in to comment.