Add missing annotations to StatePropertyMatcher

This commit is contained in:
FlorianMichael 2024-04-13 20:57:32 +02:00
parent 970986bc59
commit 4343aa17fc
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126
1 changed files with 2 additions and 2 deletions

View File

@ -85,11 +85,11 @@ public final class StatePropertyMatcher {
this.maxValue = maxValue;
}
public String minValue() {
public @Nullable String minValue() {
return minValue;
}
public String maxValue() {
public @Nullable String maxValue() {
return maxValue;
}
}