3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-17 05:20:14 +01:00

Fix compile error with JDK 8

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-06-23 07:59:05 -04:00
Ursprung ac40dfef57
Commit 31a7e22719
2 geänderte Dateien mit 7 neuen und 8 gelöschten Zeilen

Datei anzeigen

@ -48,14 +48,13 @@ public final class DimensionData {
@Nullable Long fixedTime, @Nullable Boolean createDragonFight) { @Nullable Long fixedTime, @Nullable Boolean createDragonFight) {
Preconditions.checkNotNull( Preconditions.checkNotNull(
registryIdentifier, "registryIdentifier cannot be null"); registryIdentifier, "registryIdentifier cannot be null");
Preconditions.checkArgument(registryIdentifier.length() > 0 && !registryIdentifier.isBlank(), Preconditions.checkArgument(registryIdentifier.length() > 0,
"registryIdentifier cannot be empty"); "registryIdentifier cannot be empty");
Preconditions.checkArgument(logicalHeight >= 0, "localHeight must be >= 0"); Preconditions.checkArgument(logicalHeight >= 0, "localHeight must be >= 0");
Preconditions.checkNotNull( Preconditions.checkNotNull(
burningBehaviourIdentifier, "burningBehaviourIdentifier cannot be null"); burningBehaviourIdentifier, "burningBehaviourIdentifier cannot be null");
Preconditions.checkArgument(burningBehaviourIdentifier.length() > 0 Preconditions.checkArgument(burningBehaviourIdentifier.length() > 0,
&& !burningBehaviourIdentifier.isBlank(), "burningBehaviourIdentifier cannot be empty");
"burningBehaviourIdentifier cannot be empty");
this.registryIdentifier = registryIdentifier; this.registryIdentifier = registryIdentifier;
this.isNatural = isNatural; this.isNatural = isNatural;
this.ambientLight = ambientLight; this.ambientLight = ambientLight;

Datei anzeigen

@ -21,13 +21,13 @@ public final class DimensionInfo {
this.registryIdentifier = Preconditions.checkNotNull( this.registryIdentifier = Preconditions.checkNotNull(
registryIdentifier, "registryIdentifier cannot be null"); registryIdentifier, "registryIdentifier cannot be null");
Preconditions.checkArgument( Preconditions.checkArgument(
registryIdentifier.length() > 0 && !registryIdentifier.isBlank(), registryIdentifier.length() > 0,
"registryIdentifier cannot be empty"); "registryIdentifier cannot be empty");
this.levelName = Preconditions.checkNotNull( this.levelName = Preconditions.checkNotNull(
levelName, "levelName cannot be null"); levelName, "levelName cannot be null");
Preconditions.checkArgument( Preconditions.checkArgument(
levelName.length() > 0 && !levelName.isBlank(), levelName.length() > 0,
"registryIdentifier cannot be empty"); "registryIdentifier cannot be empty");
this.isFlat = isFlat; this.isFlat = isFlat;
this.isDebugType = isDebugType; this.isDebugType = isDebugType;
} }