Format code [skip actions]

This commit is contained in:
github-actions 2023-06-04 19:56:38 +00:00
parent 6080297be9
commit 22e953b636
4 changed files with 10 additions and 15 deletions

View File

@ -4,9 +4,8 @@ import com.google.gson.annotations.SerializedName;
import emu.grasscutter.data.common.DynamicFloat;
import emu.grasscutter.game.props.ElementType;
import emu.grasscutter.utils.objects.DropType;
import lombok.ToString;
import java.io.Serializable;
import lombok.ToString;
public class AbilityModifier implements Serializable {
private static final long serialVersionUID = -2001232313615923575L;

View File

@ -8,11 +8,10 @@ import emu.grasscutter.game.world.*;
import emu.grasscutter.utils.objects.DropType;
import it.unimi.dsi.fastutil.floats.FloatArrayList;
import it.unimi.dsi.fastutil.ints.*;
import lombok.val;
import java.io.IOException;
import java.lang.reflect.Field;
import java.util.*;
import lombok.val;
public interface JsonAdapters {
class DynamicFloatAdapter extends TypeAdapter<DynamicFloat> {
@ -56,8 +55,7 @@ public interface JsonAdapters {
class DropTypeAdapter extends TypeAdapter<DropType> {
@Override
public void write(JsonWriter out, DropType value) throws IOException {
if (value.isString())
out.value(value.getAsString());
if (value.isString()) out.value(value.getAsString());
else out.value(value.getAsInt());
}

View File

@ -7,7 +7,6 @@ import emu.grasscutter.game.world.*;
import emu.grasscutter.utils.JsonAdapters.*;
import emu.grasscutter.utils.objects.*;
import it.unimi.dsi.fastutil.ints.IntList;
import java.io.*;
import java.lang.reflect.Type;
import java.nio.charset.StandardCharsets;

View File

@ -14,10 +14,11 @@ public final class DropType {
public DropType(String value) {
this.raw = value;
this.value = switch (value) {
default -> Integer.parseInt(value);
case "ForceDrop" -> 2;
};
this.value =
switch (value) {
default -> Integer.parseInt(value);
case "ForceDrop" -> 2;
};
}
/**
@ -31,8 +32,7 @@ public final class DropType {
* @return The drop type value as a string.
*/
public String getAsString() {
if (this.raw instanceof String)
return (String) this.raw;
if (this.raw instanceof String) return (String) this.raw;
throw new UnsupportedOperationException();
}
@ -40,8 +40,7 @@ public final class DropType {
* @return The drop type value as an integer.
*/
public int getAsInt() {
if (this.raw instanceof Integer)
return (int) this.raw;
if (this.raw instanceof Integer) return (int) this.raw;
throw new UnsupportedOperationException();
}
}