Revert "Format code [skip actions]"

This reverts commit 22e953b636.
This commit is contained in:
KingRainbow44 2023-06-04 17:50:55 -04:00
parent 22e953b636
commit eb17d65330
No known key found for this signature in database
GPG Key ID: FC2CB64B00D257BE
4 changed files with 15 additions and 10 deletions

View File

@ -4,9 +4,10 @@ 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 java.io.Serializable;
import lombok.ToString;
import java.io.Serializable;
public class AbilityModifier implements Serializable {
private static final long serialVersionUID = -2001232313615923575L;

View File

@ -8,10 +8,11 @@ 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> {
@ -55,7 +56,8 @@ 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,6 +7,7 @@ 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,11 +14,10 @@ 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;
};
}
/**
@ -32,7 +31,8 @@ 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,7 +40,8 @@ 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();
}
}