mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
[sinttest] Configuration.normalizeSpecification() should be public
It is likely to be desirable to re-use the normalization of specification references, for example in implementations of `TestRunResultProcessor`.
This commit is contained in:
parent
e79429e052
commit
4cc9a7d7eb
1 changed files with 1 additions and 1 deletions
|
@ -769,7 +769,7 @@ public final class Configuration {
|
|||
return disabledSpecifications.contains(normalizeSpecification(specification));
|
||||
}
|
||||
|
||||
static String normalizeSpecification(String specification) {
|
||||
public static String normalizeSpecification(String specification) {
|
||||
if (specification == null || specification.isBlank()) {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue