Skip to content

Commit

Permalink
remove unused variable and import to clean up the build
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen293 committed Nov 16, 2023
1 parent 9bedb66 commit 25936ab
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.easypost.model;

import com.google.gson.Gson;
import com.google.gson.JsonArray;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
Expand Down Expand Up @@ -35,7 +34,6 @@ public AddressVerification deserialize(final JsonElement json, final Type typeOf
addressVerification.setDetails(details);

JsonElement errorsAsJson = jo.get("errors");
Gson gson = new Gson();

if (errorsAsJson != null) {
JsonArray errorsAsArray = errorsAsJson.getAsJsonArray();
Expand Down

0 comments on commit 25936ab

Please sign in to comment.