Skip to content

Commit 37ee1c8

Browse files
authored
Merge pull request #582 from splitio/remove-gson-internal
removed gson internal import
2 parents 2b09e78 + 9336137 commit 37ee1c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/src/main/java/io/split/client/events/EventsSender.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import java.net.URISyntaxException;
1313
import java.util.List;
1414

15-
import static com.google.gson.internal.GsonPreconditions.checkNotNull;
15+
import static com.google.common.base.Preconditions.checkNotNull;
1616

1717
public class EventsSender {
1818

client/src/main/java/io/split/client/events/InMemoryEventsStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import java.util.concurrent.BlockingQueue;
1313
import java.util.concurrent.LinkedBlockingQueue;
1414

15-
import static com.google.gson.internal.GsonPreconditions.checkNotNull;
15+
import static com.google.common.base.Preconditions.checkNotNull;
1616

1717
public class InMemoryEventsStorage implements EventsStorage{
1818

0 commit comments

Comments
 (0)