3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-12-27 16:40:10 +01:00

Add missing annotations to StatePropertyMatcher

Dieser Commit ist enthalten in:
FlorianMichael 2024-04-13 20:57:32 +02:00
Ursprung 970986bc59
Commit 4343aa17fc
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: C2FB87E71C425126

Datei anzeigen

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