1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-10-18 12:15:58 +02:00

Merge pull request #594 from guusdk/sinttest_specref-normalization-access

[sinttest] Configuration.normalizeSpecification() should be public
This commit is contained in:
Florian Schmaus 2024-06-01 09:35:34 +00:00 committed by GitHub
commit 3e2d01ce63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}