Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
ob-stripe committed Nov 23, 2018
1 parent bd3b29c commit 0412d1a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.JsonPrimitive;
import com.stripe.net.ApiResource;

import java.lang.reflect.Type;
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/stripe/model/Person.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import java.util.List;
import java.util.Map;

import lombok.AccessLevel;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
Expand Down
4 changes: 1 addition & 3 deletions src/test/java/com/stripe/functional/PersonTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
import com.stripe.net.ApiResource;

import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.junit.Test;
Expand All @@ -39,7 +37,7 @@ public void testCreate() throws IOException, StripeException {
final Map<String, Object> params = new HashMap<String, Object>();
params.put("first_name", "John");

final Person person = account.persons().create(params);
final Person person = personsTmp.create(params);

assertNotNull(person);
verifyRequest(
Expand Down

0 comments on commit 0412d1a

Please sign in to comment.