Skip to content

Commit

Permalink
fix: Update import statements to use Gson annotations for serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Lotnest committed Mar 5, 2025
1 parent 40d0181 commit 0d3ff7a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*/
package dev.lotnest.sequoia.core.ws.message;

import blue.endless.jankson.annotation.SerializedName;
import com.google.gson.JsonElement;
import com.google.gson.annotations.SerializedName;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import static dev.lotnest.sequoia.core.ws.WSConstants.GSON;

import blue.endless.jankson.annotation.SerializedName;
import com.google.gson.annotations.SerializedName;
import dev.lotnest.sequoia.core.ws.message.IStateOpCode;
import dev.lotnest.sequoia.core.ws.type.IStateOpCodeType;
import java.time.OffsetDateTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import static dev.lotnest.sequoia.core.ws.WSConstants.GSON;

import blue.endless.jankson.annotation.SerializedName;
import com.google.gson.annotations.SerializedName;
import dev.lotnest.sequoia.core.ws.message.IStateOpCode;
import dev.lotnest.sequoia.core.ws.type.IStateOpCodeType;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

import static dev.lotnest.sequoia.core.ws.WSConstants.GSON;

import blue.endless.jankson.annotation.SerializedName;
import com.google.gson.JsonElement;
import com.google.gson.annotations.SerializedName;
import dev.lotnest.sequoia.core.ws.message.IStateOpCode;
import dev.lotnest.sequoia.core.ws.type.IStateOpCodeType;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import static dev.lotnest.sequoia.core.ws.WSConstants.GSON;

import blue.endless.jankson.annotation.SerializedName;
import com.google.gson.annotations.SerializedName;
import dev.lotnest.sequoia.core.ws.message.IStateOpCode;
import dev.lotnest.sequoia.core.ws.message.WSMessage;
import dev.lotnest.sequoia.core.ws.type.WSMessageType;
Expand Down

0 comments on commit 0d3ff7a

Please sign in to comment.